From cc77d695382df95002a858163e96ddf2556fb9be Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Fri, 5 Feb 2021 17:05:56 -0500 Subject: [PATCH] Update header comments --- build/header_comment.txt | 6 +++--- src/Driver/AbstractDriver.php | 6 +++--- src/Driver/ApcuDriver.php | 6 +++--- src/Driver/DriverInterface.php | 6 +++--- src/Driver/MemcachedDriver.php | 6 +++--- src/Driver/NullDriver.php | 6 +++--- src/Driver/RedisDriver.php | 6 +++--- src/Exception/CacheException.php | 6 +++--- src/Exception/InvalidArgumentException.php | 6 +++--- src/Item.php | 6 +++--- src/ItemCollection.php | 6 +++--- src/KeyValidateTrait.php | 6 +++--- src/LoggerTrait.php | 6 +++--- src/Pool.php | 6 +++--- src/Teller.php | 6 +++--- src/_Driver.php | 6 +++--- tests/Driver/ApcuDriverTest.php | 6 +++--- tests/Driver/DriverTestBase.php | 6 +++--- tests/Driver/MemcachedDriverTest.php | 6 +++--- tests/Driver/NullDriverTest.php | 6 +++--- tests/Driver/RedisDriverTest.php | 6 +++--- tests/Friend.php | 6 +++--- tests/ItemCollectionTest.php | 6 +++--- tests/ItemTest.php | 6 +++--- tests/PoolTest.php | 6 +++--- tests/TellerTest.php | 6 +++--- tests/bootstrap.php | 6 +++--- 27 files changed, 81 insertions(+), 81 deletions(-) diff --git a/build/header_comment.txt b/build/header_comment.txt index 1eba970..6d3e21f 100644 --- a/build/header_comment.txt +++ b/build/header_comment.txt @@ -3,12 +3,12 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ diff --git a/src/Driver/AbstractDriver.php b/src/Driver/AbstractDriver.php index dd3abb0..ea575ad 100644 --- a/src/Driver/AbstractDriver.php +++ b/src/Driver/AbstractDriver.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Driver/ApcuDriver.php b/src/Driver/ApcuDriver.php index cc0587c..5e2bd12 100644 --- a/src/Driver/ApcuDriver.php +++ b/src/Driver/ApcuDriver.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Driver/DriverInterface.php b/src/Driver/DriverInterface.php index 61263a3..6bf9dd5 100644 --- a/src/Driver/DriverInterface.php +++ b/src/Driver/DriverInterface.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Driver/MemcachedDriver.php b/src/Driver/MemcachedDriver.php index 10567a0..e69cc7a 100644 --- a/src/Driver/MemcachedDriver.php +++ b/src/Driver/MemcachedDriver.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Driver/NullDriver.php b/src/Driver/NullDriver.php index 97890a6..5f41498 100644 --- a/src/Driver/NullDriver.php +++ b/src/Driver/NullDriver.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Driver/RedisDriver.php b/src/Driver/RedisDriver.php index fd002f4..7856613 100644 --- a/src/Driver/RedisDriver.php +++ b/src/Driver/RedisDriver.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Exception/CacheException.php b/src/Exception/CacheException.php index abb9031..c5c0a4c 100644 --- a/src/Exception/CacheException.php +++ b/src/Exception/CacheException.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Exception; diff --git a/src/Exception/InvalidArgumentException.php b/src/Exception/InvalidArgumentException.php index 90ad534..15d8b0d 100644 --- a/src/Exception/InvalidArgumentException.php +++ b/src/Exception/InvalidArgumentException.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Exception; diff --git a/src/Item.php b/src/Item.php index 2951169..93fc519 100644 --- a/src/Item.php +++ b/src/Item.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/ItemCollection.php b/src/ItemCollection.php index 5628b34..d7b8463 100644 --- a/src/ItemCollection.php +++ b/src/ItemCollection.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/KeyValidateTrait.php b/src/KeyValidateTrait.php index 39433ee..5a2a21a 100644 --- a/src/KeyValidateTrait.php +++ b/src/KeyValidateTrait.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/LoggerTrait.php b/src/LoggerTrait.php index 27c7bbd..0489475 100644 --- a/src/LoggerTrait.php +++ b/src/LoggerTrait.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/Pool.php b/src/Pool.php index 509a97d..a53cc02 100644 --- a/src/Pool.php +++ b/src/Pool.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/Teller.php b/src/Teller.php index fa433f7..0bf6eb2 100644 --- a/src/Teller.php +++ b/src/Teller.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/_Driver.php b/src/_Driver.php index b554063..ce81299 100644 --- a/src/_Driver.php +++ b/src/_Driver.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/tests/Driver/ApcuDriverTest.php b/tests/Driver/ApcuDriverTest.php index 0843b7d..3152c93 100644 --- a/tests/Driver/ApcuDriverTest.php +++ b/tests/Driver/ApcuDriverTest.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests\Driver; diff --git a/tests/Driver/DriverTestBase.php b/tests/Driver/DriverTestBase.php index 44e5f2a..194f562 100644 --- a/tests/Driver/DriverTestBase.php +++ b/tests/Driver/DriverTestBase.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests\Driver; diff --git a/tests/Driver/MemcachedDriverTest.php b/tests/Driver/MemcachedDriverTest.php index b96fb3a..06ab53d 100644 --- a/tests/Driver/MemcachedDriverTest.php +++ b/tests/Driver/MemcachedDriverTest.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests\Driver; diff --git a/tests/Driver/NullDriverTest.php b/tests/Driver/NullDriverTest.php index a4a6f95..6306cd8 100644 --- a/tests/Driver/NullDriverTest.php +++ b/tests/Driver/NullDriverTest.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests\Driver; diff --git a/tests/Driver/RedisDriverTest.php b/tests/Driver/RedisDriverTest.php index c946529..69bb820 100644 --- a/tests/Driver/RedisDriverTest.php +++ b/tests/Driver/RedisDriverTest.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests\Driver; diff --git a/tests/Friend.php b/tests/Friend.php index 37c5633..d7c1730 100644 --- a/tests/Friend.php +++ b/tests/Friend.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/ItemCollectionTest.php b/tests/ItemCollectionTest.php index 1ec87db..adb6ebc 100644 --- a/tests/ItemCollectionTest.php +++ b/tests/ItemCollectionTest.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/ItemTest.php b/tests/ItemTest.php index c49c313..a2399d9 100644 --- a/tests/ItemTest.php +++ b/tests/ItemTest.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/PoolTest.php b/tests/PoolTest.php index 50993b5..9fd517a 100644 --- a/tests/PoolTest.php +++ b/tests/PoolTest.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/TellerTest.php b/tests/TellerTest.php index 4d1155c..e4978c6 100644 --- a/tests/TellerTest.php +++ b/tests/TellerTest.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/bootstrap.php b/tests/bootstrap.php index cb5f797..fb1e43a 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -4,13 +4,13 @@ * * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16) * - * PHP version 7.4 + * PHP version 7.4+ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2020 Timothy J. Warren + * @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1.0 + * @version 3.2.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests;