From 2b472c318532dc1cdbfc2814f804d8bcc0b2b038 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 1 Mar 2017 12:33:12 -0500 Subject: [PATCH] Update header comments --- build/header_comment.txt | 5 ++--- src/Driver/AbstractDriver.php | 5 ++--- src/Driver/ApcuDriver.php | 5 ++--- src/Driver/DriverInterface.php | 5 ++--- src/Driver/MemcacheDriver.php | 5 ++--- src/Driver/MemcachedDriver.php | 5 ++--- src/Driver/NullDriver.php | 5 ++--- src/Driver/RedisDriver.php | 5 ++--- src/Exception/CacheException.php | 5 ++--- src/Exception/InvalidArgumentException.php | 5 ++--- src/Item.php | 5 ++--- src/ItemCollection.php | 5 ++--- src/LoggerTrait.php | 5 ++--- src/Pool.php | 5 ++--- tests/Driver/ApcuDriverTest.php | 5 ++--- tests/Driver/DriverTestBase.php | 5 ++--- tests/Driver/MemcacheDriverTest.php | 5 ++--- tests/Driver/MemcachedDriverTest.php | 5 ++--- tests/Driver/NullDriverTest.php | 5 ++--- tests/Driver/RedisDriverTest.php | 5 ++--- tests/Friend.php | 5 ++--- tests/ItemCollectionTest.php | 5 ++--- tests/ItemTest.php | 5 ++--- tests/PoolTest.php | 5 ++--- tests/bootstrap.php | 5 ++--- 25 files changed, 50 insertions(+), 75 deletions(-) diff --git a/build/header_comment.txt b/build/header_comment.txt index d7d500e..c6b030c 100644 --- a/build/header_comment.txt +++ b/build/header_comment.txt @@ -7,9 +7,8 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - diff --git a/src/Driver/AbstractDriver.php b/src/Driver/AbstractDriver.php index e116e11..cb6aa7b 100644 --- a/src/Driver/AbstractDriver.php +++ b/src/Driver/AbstractDriver.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Driver; use Psr\Log\LoggerAwareInterface; diff --git a/src/Driver/ApcuDriver.php b/src/Driver/ApcuDriver.php index 8577b76..d0c71d0 100644 --- a/src/Driver/ApcuDriver.php +++ b/src/Driver/ApcuDriver.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Driver; use function apcu_add; diff --git a/src/Driver/DriverInterface.php b/src/Driver/DriverInterface.php index 278c8ef..2330be1 100644 --- a/src/Driver/DriverInterface.php +++ b/src/Driver/DriverInterface.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Driver; /** diff --git a/src/Driver/MemcacheDriver.php b/src/Driver/MemcacheDriver.php index d2d5a84..7c1e4f6 100644 --- a/src/Driver/MemcacheDriver.php +++ b/src/Driver/MemcacheDriver.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Driver; use Aviat\Banker\Exception\CacheException; diff --git a/src/Driver/MemcachedDriver.php b/src/Driver/MemcachedDriver.php index 40d92d1..a9348c2 100644 --- a/src/Driver/MemcachedDriver.php +++ b/src/Driver/MemcachedDriver.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Driver; use Aviat\Banker\Exception\CacheException; diff --git a/src/Driver/NullDriver.php b/src/Driver/NullDriver.php index 66358a4..fc741ae 100644 --- a/src/Driver/NullDriver.php +++ b/src/Driver/NullDriver.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Driver; diff --git a/src/Driver/RedisDriver.php b/src/Driver/RedisDriver.php index bfd2cc6..ec2afba 100644 --- a/src/Driver/RedisDriver.php +++ b/src/Driver/RedisDriver.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Driver; use Aviat\Banker\Exception\CacheException; diff --git a/src/Exception/CacheException.php b/src/Exception/CacheException.php index 316d799..2c08efd 100644 --- a/src/Exception/CacheException.php +++ b/src/Exception/CacheException.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Exception; use Psr\Cache\CacheException as CacheExceptionInterface; diff --git a/src/Exception/InvalidArgumentException.php b/src/Exception/InvalidArgumentException.php index bc0ec18..83edbed 100644 --- a/src/Exception/InvalidArgumentException.php +++ b/src/Exception/InvalidArgumentException.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Exception; use Psr\Cache\InvalidArgumentException as InvalidArgumentExceptionInterface; diff --git a/src/Item.php b/src/Item.php index 07c7c30..c4c0a6a 100644 --- a/src/Item.php +++ b/src/Item.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker; use Psr\Cache\CacheItemInterface; diff --git a/src/ItemCollection.php b/src/ItemCollection.php index a41ac35..735eb56 100644 --- a/src/ItemCollection.php +++ b/src/ItemCollection.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker; use Psr\Cache\CacheItemInterface; diff --git a/src/LoggerTrait.php b/src/LoggerTrait.php index 183c1d6..81a0d1f 100644 --- a/src/LoggerTrait.php +++ b/src/LoggerTrait.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker; use Psr\Log\{ diff --git a/src/Pool.php b/src/Pool.php index 9cfcfef..2abc35c 100644 --- a/src/Pool.php +++ b/src/Pool.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker; use Aviat\Banker\Driver\DriverInterface; diff --git a/tests/Driver/ApcuDriverTest.php b/tests/Driver/ApcuDriverTest.php index 1ee33df..b3986ab 100644 --- a/tests/Driver/ApcuDriverTest.php +++ b/tests/Driver/ApcuDriverTest.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Tests\Driver; use Aviat\Banker\Driver\ApcuDriver; diff --git a/tests/Driver/DriverTestBase.php b/tests/Driver/DriverTestBase.php index 306029f..debcb3b 100644 --- a/tests/Driver/DriverTestBase.php +++ b/tests/Driver/DriverTestBase.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Tests\Driver; use PHPUnit\Framework\TestCase; diff --git a/tests/Driver/MemcacheDriverTest.php b/tests/Driver/MemcacheDriverTest.php index 2f8a591..2e5ab4e 100644 --- a/tests/Driver/MemcacheDriverTest.php +++ b/tests/Driver/MemcacheDriverTest.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Tests\Driver; use Aviat\Banker\Driver\MemcacheDriver; diff --git a/tests/Driver/MemcachedDriverTest.php b/tests/Driver/MemcachedDriverTest.php index 14bfe61..c360ade 100644 --- a/tests/Driver/MemcachedDriverTest.php +++ b/tests/Driver/MemcachedDriverTest.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Tests\Driver; use Aviat\Banker\Driver\MemcachedDriver; diff --git a/tests/Driver/NullDriverTest.php b/tests/Driver/NullDriverTest.php index 3e843ce..eb3f3aa 100644 --- a/tests/Driver/NullDriverTest.php +++ b/tests/Driver/NullDriverTest.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Tests\Driver; use Aviat\Banker\Driver\NullDriver; diff --git a/tests/Driver/RedisDriverTest.php b/tests/Driver/RedisDriverTest.php index 746f14b..93e5220 100644 --- a/tests/Driver/RedisDriverTest.php +++ b/tests/Driver/RedisDriverTest.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Tests\Driver; use Aviat\Banker\Driver\RedisDriver; diff --git a/tests/Friend.php b/tests/Friend.php index 016b4ec..42f54d6 100644 --- a/tests/Friend.php +++ b/tests/Friend.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Tests; use ReflectionClass; diff --git a/tests/ItemCollectionTest.php b/tests/ItemCollectionTest.php index 6ac38dd..13967d8 100644 --- a/tests/ItemCollectionTest.php +++ b/tests/ItemCollectionTest.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Tests; use Aviat\Banker\ItemCollection; diff --git a/tests/ItemTest.php b/tests/ItemTest.php index 9259737..451e7f2 100644 --- a/tests/ItemTest.php +++ b/tests/ItemTest.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Tests; use Aviat\Banker\Item; diff --git a/tests/PoolTest.php b/tests/PoolTest.php index 3f540aa..f988ea6 100644 --- a/tests/PoolTest.php +++ b/tests/PoolTest.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Tests; use Aviat\Banker\{Item, ItemCollection, Pool}; diff --git a/tests/bootstrap.php b/tests/bootstrap.php index b130090..68d0801 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -8,12 +8,11 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 Timothy J. Warren + * @copyright 2016 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 1.0.0 + * @version 1.0.1 * @link https://git.timshomepage.net/timw4mail/banker */ - namespace Aviat\Banker\Tests; // Autoload test dependencies