diff --git a/CHANGELOG.md b/CHANGELOG.md index efb7eff..9ce08fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 3.1.0 +* Added key name checks to `Pool` class + ## 3.0.0 * Updated dependencies * Increased required PHP version to 7.4 diff --git a/build/header_comment.txt b/build/header_comment.txt index 64d16f5..1eba970 100644 --- a/build/header_comment.txt +++ b/build/header_comment.txt @@ -9,6 +9,6 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ diff --git a/src/Driver/AbstractDriver.php b/src/Driver/AbstractDriver.php index aa521c1..21368a4 100644 --- a/src/Driver/AbstractDriver.php +++ b/src/Driver/AbstractDriver.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.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 85cbe13..4ed9dbd 100644 --- a/src/Driver/ApcuDriver.php +++ b/src/Driver/ApcuDriver.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.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 2adba47..4dd6356 100644 --- a/src/Driver/DriverInterface.php +++ b/src/Driver/DriverInterface.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.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 07e8b19..a244ece 100644 --- a/src/Driver/MemcachedDriver.php +++ b/src/Driver/MemcachedDriver.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.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 a5f99f5..9c8aacc 100644 --- a/src/Driver/NullDriver.php +++ b/src/Driver/NullDriver.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.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 65bb3d3..dfc6b69 100644 --- a/src/Driver/RedisDriver.php +++ b/src/Driver/RedisDriver.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.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 cd494ba..abb9031 100644 --- a/src/Exception/CacheException.php +++ b/src/Exception/CacheException.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.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 b42eefc..90ad534 100644 --- a/src/Exception/InvalidArgumentException.php +++ b/src/Exception/InvalidArgumentException.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Exception; diff --git a/src/Item.php b/src/Item.php index 82b92b7..2951169 100644 --- a/src/Item.php +++ b/src/Item.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/ItemCollection.php b/src/ItemCollection.php index c787652..9b72c86 100644 --- a/src/ItemCollection.php +++ b/src/ItemCollection.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/LoggerTrait.php b/src/LoggerTrait.php index e5be0c0..27c7bbd 100644 --- a/src/LoggerTrait.php +++ b/src/LoggerTrait.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/Pool.php b/src/Pool.php index 82cadb1..c9c37a5 100644 --- a/src/Pool.php +++ b/src/Pool.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/Teller.php b/src/Teller.php index 8790862..2dfccb3 100644 --- a/src/Teller.php +++ b/src/Teller.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/_Driver.php b/src/_Driver.php index 2d31611..88fd747 100644 --- a/src/_Driver.php +++ b/src/_Driver.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/tests/Driver/ApcuDriverTest.php b/tests/Driver/ApcuDriverTest.php index 371567d..f289b48 100644 --- a/tests/Driver/ApcuDriverTest.php +++ b/tests/Driver/ApcuDriverTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.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 71a3782..590c8ec 100644 --- a/tests/Driver/DriverTestBase.php +++ b/tests/Driver/DriverTestBase.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.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 f3c9800..96b5b1c 100644 --- a/tests/Driver/MemcachedDriverTest.php +++ b/tests/Driver/MemcachedDriverTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.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 509c30d..a4a6f95 100644 --- a/tests/Driver/NullDriverTest.php +++ b/tests/Driver/NullDriverTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.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 4915215..662f6f9 100644 --- a/tests/Driver/RedisDriverTest.php +++ b/tests/Driver/RedisDriverTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests\Driver; diff --git a/tests/Friend.php b/tests/Friend.php index b84d4dd..37c5633 100644 --- a/tests/Friend.php +++ b/tests/Friend.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/ItemCollectionTest.php b/tests/ItemCollectionTest.php index efe01ee..1ec87db 100644 --- a/tests/ItemCollectionTest.php +++ b/tests/ItemCollectionTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/ItemTest.php b/tests/ItemTest.php index 1fbe9e5..c49c313 100644 --- a/tests/ItemTest.php +++ b/tests/ItemTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/PoolTest.php b/tests/PoolTest.php index 0254a9b..50993b5 100644 --- a/tests/PoolTest.php +++ b/tests/PoolTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/TellerTest.php b/tests/TellerTest.php index e291349..4d1155c 100644 --- a/tests/TellerTest.php +++ b/tests/TellerTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 8bdc658..cb5f797 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.0.0 + * @version 3.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests;