From c648cb9a8e9f1da21ce578483c2deeefe45777a3 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 13 Sep 2017 16:54:09 -0400 Subject: [PATCH] Update header comments, and add a changelog entry for a new version --- CHANGELOG.md | 6 +++++- build/header_comment.txt | 2 +- src/ArrayWrapper.php | 2 +- src/Config.php | 2 +- src/ConfigInterface.php | 2 +- src/Di/Container.php | 2 +- src/Di/ContainerAware.php | 2 +- src/Di/ContainerAwareInterface.php | 2 +- src/Di/ContainerInterface.php | 2 +- src/Di/Exception/ContainerException.php | 2 +- src/Di/Exception/NotFoundException.php | 2 +- src/Enum.php | 2 +- src/Exception/ConfigException.php | 2 +- src/Exception/DoubleRenderException.php | 2 +- src/Friend.php | 2 +- src/Json.php | 2 +- src/JsonException.php | 2 +- src/Model.php | 2 +- src/Model/DB.php | 2 +- src/StringWrapper.php | 2 +- src/Transformer/AbstractTransformer.php | 2 +- src/Transformer/TransformerInterface.php | 2 +- src/Type/ArrayType.php | 2 +- src/Type/StringType.php | 2 +- src/View.php | 2 +- src/View/HtmlView.php | 2 +- src/View/HttpView.php | 2 +- src/View/JsonView.php | 2 +- src/ViewInterface.php | 2 +- src/functions.php | 2 +- tests/BaseModelTest.php | 2 +- tests/ConfigTest.php | 2 +- tests/Di/ContainerAwareTest.php | 2 +- tests/Di/ContainerTest.php | 2 +- tests/EnumTest.php | 2 +- tests/Exception/DoubleRenderExceptionTest.php | 2 +- tests/FriendTest.php | 2 +- tests/Ion_TestCase.php | 2 +- tests/JsonTest.php | 2 +- tests/Model/BaseDBModelTest.php | 2 +- tests/StringWrapperTest.php | 2 +- tests/TestSessionHandler.php | 2 +- tests/Transformer/AbstractTransformerTest.php | 2 +- tests/Type/ArrayTypeTest.php | 2 +- tests/Type/StringTypeTest.php | 2 +- tests/View/HtmlViewTest.php | 2 +- tests/View/HttpViewTest.php | 2 +- tests/View/JsonViewTest.php | 2 +- tests/functionsTest.php | 2 +- tests/mocks.php | 2 +- 50 files changed, 54 insertions(+), 50 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87f5b65..ffc6a6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog +## Version 2.2 + +* Added `fuzzyCaseMatch` method to StringType + ## Version 2.1 -* Added addHeader method to base View class +* Added `addHeader` method to base View class ## Version 2 diff --git a/build/header_comment.txt b/build/header_comment.txt index cc41d2d..577eadf 100644 --- a/build/header_comment.txt +++ b/build/header_comment.txt @@ -9,7 +9,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/ArrayWrapper.php b/src/ArrayWrapper.php index 6e8b3ff..dce6072 100644 --- a/src/ArrayWrapper.php +++ b/src/ArrayWrapper.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Config.php b/src/Config.php index 6123217..5245533 100644 --- a/src/Config.php +++ b/src/Config.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/ConfigInterface.php b/src/ConfigInterface.php index c113639..3011b8f 100644 --- a/src/ConfigInterface.php +++ b/src/ConfigInterface.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Di/Container.php b/src/Di/Container.php index 15f539d..7b056e9 100644 --- a/src/Di/Container.php +++ b/src/Di/Container.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Di/ContainerAware.php b/src/Di/ContainerAware.php index b51735d..9deee48 100644 --- a/src/Di/ContainerAware.php +++ b/src/Di/ContainerAware.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Di/ContainerAwareInterface.php b/src/Di/ContainerAwareInterface.php index 18ce6e6..0ac45ef 100644 --- a/src/Di/ContainerAwareInterface.php +++ b/src/Di/ContainerAwareInterface.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Di/ContainerInterface.php b/src/Di/ContainerInterface.php index 64d828c..90db5c8 100644 --- a/src/Di/ContainerInterface.php +++ b/src/Di/ContainerInterface.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Di/Exception/ContainerException.php b/src/Di/Exception/ContainerException.php index 3c4ccfd..2cc07bb 100644 --- a/src/Di/Exception/ContainerException.php +++ b/src/Di/Exception/ContainerException.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Di/Exception/NotFoundException.php b/src/Di/Exception/NotFoundException.php index 42197dc..73e47d6 100644 --- a/src/Di/Exception/NotFoundException.php +++ b/src/Di/Exception/NotFoundException.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Enum.php b/src/Enum.php index a255364..ff88227 100644 --- a/src/Enum.php +++ b/src/Enum.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Exception/ConfigException.php b/src/Exception/ConfigException.php index a738c48..8067c1e 100644 --- a/src/Exception/ConfigException.php +++ b/src/Exception/ConfigException.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Exception/DoubleRenderException.php b/src/Exception/DoubleRenderException.php index c24dc43..ad84fed 100644 --- a/src/Exception/DoubleRenderException.php +++ b/src/Exception/DoubleRenderException.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Friend.php b/src/Friend.php index c45ad3a..0b722cb 100644 --- a/src/Friend.php +++ b/src/Friend.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Json.php b/src/Json.php index ce2ec2a..5a58fe6 100644 --- a/src/Json.php +++ b/src/Json.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/JsonException.php b/src/JsonException.php index e68fb36..912fe1e 100644 --- a/src/JsonException.php +++ b/src/JsonException.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Model.php b/src/Model.php index 166bc15..8040b14 100644 --- a/src/Model.php +++ b/src/Model.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Model/DB.php b/src/Model/DB.php index 432ee17..2b106f6 100644 --- a/src/Model/DB.php +++ b/src/Model/DB.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/StringWrapper.php b/src/StringWrapper.php index 65a202e..e15e3dc 100644 --- a/src/StringWrapper.php +++ b/src/StringWrapper.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Transformer/AbstractTransformer.php b/src/Transformer/AbstractTransformer.php index 6fc6a1e..b6aa208 100644 --- a/src/Transformer/AbstractTransformer.php +++ b/src/Transformer/AbstractTransformer.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Transformer/TransformerInterface.php b/src/Transformer/TransformerInterface.php index b1d7f2c..0f192fb 100644 --- a/src/Transformer/TransformerInterface.php +++ b/src/Transformer/TransformerInterface.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Type/ArrayType.php b/src/Type/ArrayType.php index 9637446..7cb38e5 100644 --- a/src/Type/ArrayType.php +++ b/src/Type/ArrayType.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/Type/StringType.php b/src/Type/StringType.php index e260814..af8cbe5 100644 --- a/src/Type/StringType.php +++ b/src/Type/StringType.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/View.php b/src/View.php index 81ed52c..57916a5 100644 --- a/src/View.php +++ b/src/View.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/View/HtmlView.php b/src/View/HtmlView.php index 4d4dbda..71846c7 100644 --- a/src/View/HtmlView.php +++ b/src/View/HtmlView.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/View/HttpView.php b/src/View/HttpView.php index 5b40e0c..0bb864b 100644 --- a/src/View/HttpView.php +++ b/src/View/HttpView.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/View/JsonView.php b/src/View/JsonView.php index e1defc6..35d983e 100644 --- a/src/View/JsonView.php +++ b/src/View/JsonView.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/ViewInterface.php b/src/ViewInterface.php index 2e31d32..9572ee4 100644 --- a/src/ViewInterface.php +++ b/src/ViewInterface.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/src/functions.php b/src/functions.php index 885f764..67376e1 100644 --- a/src/functions.php +++ b/src/functions.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/BaseModelTest.php b/tests/BaseModelTest.php index 57afc88..9dade88 100644 --- a/tests/BaseModelTest.php +++ b/tests/BaseModelTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/ConfigTest.php b/tests/ConfigTest.php index 41f7807..de8f42e 100644 --- a/tests/ConfigTest.php +++ b/tests/ConfigTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/Di/ContainerAwareTest.php b/tests/Di/ContainerAwareTest.php index 41c5639..ae42aa5 100644 --- a/tests/Di/ContainerAwareTest.php +++ b/tests/Di/ContainerAwareTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/Di/ContainerTest.php b/tests/Di/ContainerTest.php index bcd9290..919c301 100644 --- a/tests/Di/ContainerTest.php +++ b/tests/Di/ContainerTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/EnumTest.php b/tests/EnumTest.php index 3cfaf38..713790f 100644 --- a/tests/EnumTest.php +++ b/tests/EnumTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/Exception/DoubleRenderExceptionTest.php b/tests/Exception/DoubleRenderExceptionTest.php index a8cdaa0..a9ca201 100644 --- a/tests/Exception/DoubleRenderExceptionTest.php +++ b/tests/Exception/DoubleRenderExceptionTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/FriendTest.php b/tests/FriendTest.php index 205e99a..0c766fb 100644 --- a/tests/FriendTest.php +++ b/tests/FriendTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/Ion_TestCase.php b/tests/Ion_TestCase.php index 85f695e..7024c3f 100644 --- a/tests/Ion_TestCase.php +++ b/tests/Ion_TestCase.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/JsonTest.php b/tests/JsonTest.php index 66b8157..1e5b642 100644 --- a/tests/JsonTest.php +++ b/tests/JsonTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/Model/BaseDBModelTest.php b/tests/Model/BaseDBModelTest.php index e847064..4ce019f 100644 --- a/tests/Model/BaseDBModelTest.php +++ b/tests/Model/BaseDBModelTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/StringWrapperTest.php b/tests/StringWrapperTest.php index ea1dbfa..a24dc1c 100644 --- a/tests/StringWrapperTest.php +++ b/tests/StringWrapperTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/TestSessionHandler.php b/tests/TestSessionHandler.php index 0ef44ed..dd68bad 100644 --- a/tests/TestSessionHandler.php +++ b/tests/TestSessionHandler.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/Transformer/AbstractTransformerTest.php b/tests/Transformer/AbstractTransformerTest.php index 8cdfaa7..3acf275 100644 --- a/tests/Transformer/AbstractTransformerTest.php +++ b/tests/Transformer/AbstractTransformerTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/Type/ArrayTypeTest.php b/tests/Type/ArrayTypeTest.php index 76de3c7..a93c494 100644 --- a/tests/Type/ArrayTypeTest.php +++ b/tests/Type/ArrayTypeTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/Type/StringTypeTest.php b/tests/Type/StringTypeTest.php index ad1744f..9e0861f 100644 --- a/tests/Type/StringTypeTest.php +++ b/tests/Type/StringTypeTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/View/HtmlViewTest.php b/tests/View/HtmlViewTest.php index 9eb0fc6..b2e10fe 100644 --- a/tests/View/HtmlViewTest.php +++ b/tests/View/HtmlViewTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/View/HttpViewTest.php b/tests/View/HttpViewTest.php index 5dc1aaf..1808984 100644 --- a/tests/View/HttpViewTest.php +++ b/tests/View/HttpViewTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/View/JsonViewTest.php b/tests/View/JsonViewTest.php index 6339546..93c1ae2 100644 --- a/tests/View/JsonViewTest.php +++ b/tests/View/JsonViewTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/functionsTest.php b/tests/functionsTest.php index b3c5cd3..4bf2ed5 100644 --- a/tests/functionsTest.php +++ b/tests/functionsTest.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */ diff --git a/tests/mocks.php b/tests/mocks.php index c4fb6f8..c2c1caa 100644 --- a/tests/mocks.php +++ b/tests/mocks.php @@ -10,7 +10,7 @@ * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 2.1.0 + * @version 2.2.0 * @link https://git.timshomepage.net/timw4mail/ion */