From dd76f2887cc4bb47787fc24fc9621351abd0e77c Mon Sep 17 00:00:00 2001 From: "Stricted.build" Date: Fri, 1 Jan 2016 02:35:22 +0100 Subject: [PATCH] update copyright year --- SpeedportHybrid.class.php | 2 +- lib/exception/NotImplementedException.class.php | 2 +- lib/exception/RebootException.class.php | 2 +- lib/exception/RouterException.class.php | 2 +- lib/trait/Connection.class.php | 2 +- lib/trait/CryptLib.class.php | 2 +- lib/trait/Firewall.class.php | 2 +- lib/trait/Login.class.php | 2 +- lib/trait/Network.class.php | 2 +- lib/trait/Phone.class.php | 2 +- lib/trait/System.class.php | 2 +- tests/Data.class.php | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/SpeedportHybrid.class.php b/SpeedportHybrid.class.php index 14a07bd..ba390e6 100644 --- a/SpeedportHybrid.class.php +++ b/SpeedportHybrid.class.php @@ -14,7 +14,7 @@ require_once('lib/trait/System.class.php'); /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ class SpeedportHybrid { use Connection; diff --git a/lib/exception/NotImplementedException.class.php b/lib/exception/NotImplementedException.class.php index f2d36c4..f6682c1 100644 --- a/lib/exception/NotImplementedException.class.php +++ b/lib/exception/NotImplementedException.class.php @@ -2,7 +2,7 @@ /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ class NotImplementedException extends Exception { } diff --git a/lib/exception/RebootException.class.php b/lib/exception/RebootException.class.php index fbf6fb7..3533df4 100644 --- a/lib/exception/RebootException.class.php +++ b/lib/exception/RebootException.class.php @@ -2,7 +2,7 @@ /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ class RebootException extends Exception { } diff --git a/lib/exception/RouterException.class.php b/lib/exception/RouterException.class.php index e0ce1ef..ecefd49 100644 --- a/lib/exception/RouterException.class.php +++ b/lib/exception/RouterException.class.php @@ -2,7 +2,7 @@ /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ class RouterException extends Exception { } diff --git a/lib/trait/Connection.class.php b/lib/trait/Connection.class.php index 07d0d9b..7552601 100644 --- a/lib/trait/Connection.class.php +++ b/lib/trait/Connection.class.php @@ -2,7 +2,7 @@ /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ trait Connection { /** diff --git a/lib/trait/CryptLib.class.php b/lib/trait/CryptLib.class.php index 1ff9499..eedecbb 100644 --- a/lib/trait/CryptLib.class.php +++ b/lib/trait/CryptLib.class.php @@ -2,7 +2,7 @@ /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ trait CryptLib { /** diff --git a/lib/trait/Firewall.class.php b/lib/trait/Firewall.class.php index e4c9dba..e743ec2 100644 --- a/lib/trait/Firewall.class.php +++ b/lib/trait/Firewall.class.php @@ -2,7 +2,7 @@ /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ trait Firewall { /** diff --git a/lib/trait/Login.class.php b/lib/trait/Login.class.php index 09acc27..2e5d029 100644 --- a/lib/trait/Login.class.php +++ b/lib/trait/Login.class.php @@ -2,7 +2,7 @@ /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ trait Login { /** diff --git a/lib/trait/Network.class.php b/lib/trait/Network.class.php index 0c22a8d..0f9422f 100644 --- a/lib/trait/Network.class.php +++ b/lib/trait/Network.class.php @@ -2,7 +2,7 @@ /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ trait Network { /** diff --git a/lib/trait/Phone.class.php b/lib/trait/Phone.class.php index d55bd43..c3ef785 100644 --- a/lib/trait/Phone.class.php +++ b/lib/trait/Phone.class.php @@ -2,7 +2,7 @@ /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ trait Phone { /** diff --git a/lib/trait/System.class.php b/lib/trait/System.class.php index d0827ff..7d3eaba 100644 --- a/lib/trait/System.class.php +++ b/lib/trait/System.class.php @@ -2,7 +2,7 @@ /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ trait System { /** diff --git a/tests/Data.class.php b/tests/Data.class.php index b9ec9df..0ebf097 100644 --- a/tests/Data.class.php +++ b/tests/Data.class.php @@ -3,7 +3,7 @@ require_once('../SpeedportHybrid.class.php'); /** * @author Jan Altensen (Stricted) * @license GNU Lesser General Public License - * @copyright 2015 Jan Altensen (Stricted) + * @copyright 2015-2016 Jan Altensen (Stricted) */ class Data extends SpeedportHybrid { public function getDSL () { -- 2.20.1