diff --git a/app/appConf/base_config.php b/app/appConf/base_config.php index 8f7a13c2..710e9ad8 100644 --- a/app/appConf/base_config.php +++ b/app/appConf/base_config.php @@ -1,19 +1,20 @@ - - * @copyright 2015 - 2016 Timothy J. Warren + * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1 + * @version 4.0 * @link https://github.com/timw4mail/HummingBirdAnimeClient */ + // ---------------------------------------------------------------------------- // Lower level configuration // diff --git a/app/appConf/menus.php b/app/appConf/menus.php index 6e349eba..9b520b9e 100644 --- a/app/appConf/menus.php +++ b/app/appConf/menus.php @@ -1,19 +1,20 @@ - - * @copyright 2015 - 2016 Timothy J. Warren + * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1 + * @version 4.0 * @link https://github.com/timw4mail/HummingBirdAnimeClient */ + return [ 'anime_list' => [ 'route_prefix' => '/anime', diff --git a/app/appConf/minify_config.php b/app/appConf/minify_config.php index aa1073f0..22898a06 100644 --- a/app/appConf/minify_config.php +++ b/app/appConf/minify_config.php @@ -1,16 +1,16 @@ - - * @copyright 2015 - 2016 Timothy J. Warren + * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1 + * @version 4.0 * @link https://github.com/timw4mail/HummingBirdAnimeClient */ diff --git a/app/appConf/minify_css_groups.php b/app/appConf/minify_css_groups.php index 1242b592..e0272ef5 100644 --- a/app/appConf/minify_css_groups.php +++ b/app/appConf/minify_css_groups.php @@ -1,19 +1,20 @@ - - * @copyright 2015 - 2016 Timothy J. Warren + * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1 + * @version 4.0 * @link https://github.com/timw4mail/HummingBirdAnimeClient */ + // -------------------------------------------------------------------------- /** diff --git a/app/appConf/minify_js_groups.php b/app/appConf/minify_js_groups.php index c50086d8..12d910ea 100644 --- a/app/appConf/minify_js_groups.php +++ b/app/appConf/minify_js_groups.php @@ -1,19 +1,20 @@ - - * @copyright 2015 - 2016 Timothy J. Warren + * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1 + * @version 4.0 * @link https://github.com/timw4mail/HummingBirdAnimeClient */ + // -------------------------------------------------------------------------- /** diff --git a/app/appConf/routes.php b/app/appConf/routes.php index cb5f2fa1..22f2e66e 100644 --- a/app/appConf/routes.php +++ b/app/appConf/routes.php @@ -1,19 +1,20 @@ - - * @copyright 2015 - 2016 Timothy J. Warren + * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1 + * @version 4.0 * @link https://github.com/timw4mail/HummingBirdAnimeClient */ + use const Aviat\AnimeClient\{ DEFAULT_CONTROLLER_METHOD, DEFAULT_CONTROLLER_NAMESPACE diff --git a/app/bootstrap.php b/app/bootstrap.php index 599a275b..860e1b48 100644 --- a/app/bootstrap.php +++ b/app/bootstrap.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/build/header_comment.txt b/build/header_comment.txt index 91b15c5d..b074261d 100644 --- a/build/header_comment.txt +++ b/build/header_comment.txt @@ -1,11 +1,11 @@ /** - * Anime List Client + * Hummingbird Anime List Client * * An API client for Kitsu and MyAnimeList to manage anime and manga watch lists * * PHP version 7 * - * @package AnimeListClient + * @package HummingbirdAnimeClient * @author Timothy J. Warren * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/public/css.php b/public/css.php index 0faee554..72870935 100644 --- a/public/css.php +++ b/public/css.php @@ -1,19 +1,20 @@ - * @copyright 2015 - 2016 Timothy J. Warren + * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1 + * @version 4.0 * @link https://github.com/timw4mail/HummingBirdAnimeClient */ + namespace Aviat\EasyMin; require_once('./min.php'); diff --git a/public/js.php b/public/js.php index ca97b19b..36e0e206 100644 --- a/public/js.php +++ b/public/js.php @@ -1,16 +1,16 @@ - * @copyright 2015 - 2016 Timothy J. Warren + * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 3.1 + * @version 4.0 * @link https://github.com/timw4mail/HummingBirdAnimeClient */ diff --git a/public/js/base/events.js b/public/js/base/events.js index 9ec6e1ab..a59ce1c0 100644 --- a/public/js/base/events.js +++ b/public/js/base/events.js @@ -11,7 +11,7 @@ }); // Confirm deleting of list or library items - ac.on('form.js-delete', 'submit', function (event) { + ac.on('form.js-delete', 'submit', event => { let proceed = confirm("Are you ABSOLUTELY SURE you want to delete this item?"); if (proceed === false) { @@ -21,9 +21,9 @@ }); // Clear the api cache - ac.on('.js-clear-cache', 'click', function () { + ac.on('.js-clear-cache', 'click', () => { ac.get('/cache_purge', () => { - ac.showMessage('success', `Sucessfully purged api cache`); + ac.showMessage('success', `Successfully purged api cache`); }); }); diff --git a/public/min.php b/public/min.php index 77542046..200443ff 100644 --- a/public/min.php +++ b/public/min.php @@ -1,16 +1,20 @@ - + * @copyright 2015 - 2017 Timothy J. Warren + * @license http://www.opensource.org/licenses/mit-license.html MIT License + * @version 4.0 + * @link https://github.com/timw4mail/HummingBirdAnimeClient */ + namespace Aviat\EasyMin; //Creative rewriting of /g/groupname to ?g=groupname diff --git a/src/API/APIRequestBuilder.php b/src/API/APIRequestBuilder.php index 4a96f63b..0c7a309a 100644 --- a/src/API/APIRequestBuilder.php +++ b/src/API/APIRequestBuilder.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/AbstractListItem.php b/src/API/AbstractListItem.php index 716f65f4..11f1f821 100644 --- a/src/API/AbstractListItem.php +++ b/src/API/AbstractListItem.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/CacheTrait.php b/src/API/CacheTrait.php index 211c3977..4e32926c 100644 --- a/src/API/CacheTrait.php +++ b/src/API/CacheTrait.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/FailedResponseException.php b/src/API/FailedResponseException.php index 648bb83d..3952a13e 100644 --- a/src/API/FailedResponseException.php +++ b/src/API/FailedResponseException.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/JsonAPI.php b/src/API/JsonAPI.php index c351373f..a7545770 100644 --- a/src/API/JsonAPI.php +++ b/src/API/JsonAPI.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu.php b/src/API/Kitsu.php index 11f947c5..cc79be83 100644 --- a/src/API/Kitsu.php +++ b/src/API/Kitsu.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/Auth.php b/src/API/Kitsu/Auth.php index ecee237b..13039009 100644 --- a/src/API/Kitsu/Auth.php +++ b/src/API/Kitsu/Auth.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/Enum/AnimeAiringStatus.php b/src/API/Kitsu/Enum/AnimeAiringStatus.php index 606d07c6..bd6a69f6 100644 --- a/src/API/Kitsu/Enum/AnimeAiringStatus.php +++ b/src/API/Kitsu/Enum/AnimeAiringStatus.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/Enum/AnimeWatchingStatus.php b/src/API/Kitsu/Enum/AnimeWatchingStatus.php index be86960a..66aa0b05 100644 --- a/src/API/Kitsu/Enum/AnimeWatchingStatus.php +++ b/src/API/Kitsu/Enum/AnimeWatchingStatus.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/Enum/MangaReadingStatus.php b/src/API/Kitsu/Enum/MangaReadingStatus.php index 5b1de9c7..ea5f1759 100644 --- a/src/API/Kitsu/Enum/MangaReadingStatus.php +++ b/src/API/Kitsu/Enum/MangaReadingStatus.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/KitsuRequestBuilder.php b/src/API/Kitsu/KitsuRequestBuilder.php index 7a3cab02..f26ac4d1 100644 --- a/src/API/Kitsu/KitsuRequestBuilder.php +++ b/src/API/Kitsu/KitsuRequestBuilder.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/KitsuTrait.php b/src/API/Kitsu/KitsuTrait.php index 84bcf42c..065b2ab7 100644 --- a/src/API/Kitsu/KitsuTrait.php +++ b/src/API/Kitsu/KitsuTrait.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/ListItem.php b/src/API/Kitsu/ListItem.php index 509fab80..6af8284f 100644 --- a/src/API/Kitsu/ListItem.php +++ b/src/API/Kitsu/ListItem.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/Model.php b/src/API/Kitsu/Model.php index 96fd54c5..b276477d 100644 --- a/src/API/Kitsu/Model.php +++ b/src/API/Kitsu/Model.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/Transformer/AnimeListTransformer.php b/src/API/Kitsu/Transformer/AnimeListTransformer.php index cd87707b..2bb0a261 100644 --- a/src/API/Kitsu/Transformer/AnimeListTransformer.php +++ b/src/API/Kitsu/Transformer/AnimeListTransformer.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/Transformer/AnimeTransformer.php b/src/API/Kitsu/Transformer/AnimeTransformer.php index a72a0779..8f626931 100644 --- a/src/API/Kitsu/Transformer/AnimeTransformer.php +++ b/src/API/Kitsu/Transformer/AnimeTransformer.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/Transformer/MangaListTransformer.php b/src/API/Kitsu/Transformer/MangaListTransformer.php index 81d7bcf4..bdf67040 100644 --- a/src/API/Kitsu/Transformer/MangaListTransformer.php +++ b/src/API/Kitsu/Transformer/MangaListTransformer.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/Kitsu/Transformer/MangaTransformer.php b/src/API/Kitsu/Transformer/MangaTransformer.php index 13de6d26..fde227c0 100644 --- a/src/API/Kitsu/Transformer/MangaTransformer.php +++ b/src/API/Kitsu/Transformer/MangaTransformer.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/ListItemInterface.php b/src/API/ListItemInterface.php index 17f0cad8..73bc1c60 100644 --- a/src/API/ListItemInterface.php +++ b/src/API/ListItemInterface.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/MAL.php b/src/API/MAL.php index 972b4534..6efc83e2 100644 --- a/src/API/MAL.php +++ b/src/API/MAL.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/MAL/Enum/AnimeWatchingStatus.php b/src/API/MAL/Enum/AnimeWatchingStatus.php index e6eb0097..7af37b47 100644 --- a/src/API/MAL/Enum/AnimeWatchingStatus.php +++ b/src/API/MAL/Enum/AnimeWatchingStatus.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/MAL/Enum/MangaReadingStatus.php b/src/API/MAL/Enum/MangaReadingStatus.php index edf82ddd..9f7433cc 100644 --- a/src/API/MAL/Enum/MangaReadingStatus.php +++ b/src/API/MAL/Enum/MangaReadingStatus.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/MAL/ListItem.php b/src/API/MAL/ListItem.php index 686c3455..e040f6ee 100644 --- a/src/API/MAL/ListItem.php +++ b/src/API/MAL/ListItem.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/MAL/MALRequestBuilder.php b/src/API/MAL/MALRequestBuilder.php index 326ad44a..248bccd6 100644 --- a/src/API/MAL/MALRequestBuilder.php +++ b/src/API/MAL/MALRequestBuilder.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/MAL/MALTrait.php b/src/API/MAL/MALTrait.php index ba69da6e..65aa580d 100644 --- a/src/API/MAL/MALTrait.php +++ b/src/API/MAL/MALTrait.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/MAL/Model.php b/src/API/MAL/Model.php index 46355b27..fa98b110 100644 --- a/src/API/MAL/Model.php +++ b/src/API/MAL/Model.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/MAL/Transformer/AnimeListTransformer.php b/src/API/MAL/Transformer/AnimeListTransformer.php index 6cabf5fe..19714c18 100644 --- a/src/API/MAL/Transformer/AnimeListTransformer.php +++ b/src/API/MAL/Transformer/AnimeListTransformer.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/API/XML.php b/src/API/XML.php index 86c27e1d..a0ba615c 100644 --- a/src/API/XML.php +++ b/src/API/XML.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Command/BaseCommand.php b/src/Command/BaseCommand.php index cff2621c..2e2f36e1 100644 --- a/src/Command/BaseCommand.php +++ b/src/Command/BaseCommand.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Command/ClearCache.php b/src/Command/ClearCache.php index 8d8dbe06..31dced60 100644 --- a/src/Command/ClearCache.php +++ b/src/Command/ClearCache.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Command/SyncKitsuWithMal.php b/src/Command/SyncKitsuWithMal.php index c219bfff..40f5575d 100644 --- a/src/Command/SyncKitsuWithMal.php +++ b/src/Command/SyncKitsuWithMal.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Controller/Anime.php b/src/Controller/Anime.php index baac5d8d..a452f65b 100644 --- a/src/Controller/Anime.php +++ b/src/Controller/Anime.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Controller/Collection.php b/src/Controller/Collection.php index 25f667b8..e8955c5e 100644 --- a/src/Controller/Collection.php +++ b/src/Controller/Collection.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Controller/Manga.php b/src/Controller/Manga.php index 6cfd1e2a..fc273abe 100644 --- a/src/Controller/Manga.php +++ b/src/Controller/Manga.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Helper/Menu.php b/src/Helper/Menu.php index c3045436..0e892f29 100644 --- a/src/Helper/Menu.php +++ b/src/Helper/Menu.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Model/API.php b/src/Model/API.php index 24879073..8f07adfb 100644 --- a/src/Model/API.php +++ b/src/Model/API.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Model/Anime.php b/src/Model/Anime.php index 4064bbb3..a4fc70d2 100644 --- a/src/Model/Anime.php +++ b/src/Model/Anime.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Model/AnimeCollection.php b/src/Model/AnimeCollection.php index 99a47fc1..22fdc8d0 100644 --- a/src/Model/AnimeCollection.php +++ b/src/Model/AnimeCollection.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Model/Collection.php b/src/Model/Collection.php index 80c4822c..be16e4e8 100644 --- a/src/Model/Collection.php +++ b/src/Model/Collection.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Model/DB.php b/src/Model/DB.php index c63dc771..647076fc 100644 --- a/src/Model/DB.php +++ b/src/Model/DB.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/src/Model/Manga.php b/src/Model/Manga.php index 38ea4c5c..86f949e5 100644 --- a/src/Model/Manga.php +++ b/src/Model/Manga.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/tests/API/APIRequestBuilderTest.php b/tests/API/APIRequestBuilderTest.php index f2050e86..1b51bdff 100644 --- a/tests/API/APIRequestBuilderTest.php +++ b/tests/API/APIRequestBuilderTest.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/tests/API/CacheTraitTest.php b/tests/API/CacheTraitTest.php index 596d3032..ca247442 100644 --- a/tests/API/CacheTraitTest.php +++ b/tests/API/CacheTraitTest.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/tests/API/JsonAPITest.php b/tests/API/JsonAPITest.php index 396d1ade..d7f5f2f4 100644 --- a/tests/API/JsonAPITest.php +++ b/tests/API/JsonAPITest.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/tests/API/Kitsu/Transformer/AnimeListTransformerTest.php b/tests/API/Kitsu/Transformer/AnimeListTransformerTest.php index 357c57d2..65bb5f1e 100644 --- a/tests/API/Kitsu/Transformer/AnimeListTransformerTest.php +++ b/tests/API/Kitsu/Transformer/AnimeListTransformerTest.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/tests/API/Kitsu/Transformer/AnimeTransformerTest.php b/tests/API/Kitsu/Transformer/AnimeTransformerTest.php index 9aa74952..be90d345 100644 --- a/tests/API/Kitsu/Transformer/AnimeTransformerTest.php +++ b/tests/API/Kitsu/Transformer/AnimeTransformerTest.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/tests/API/Kitsu/Transformer/MangaListTransformerTest.php b/tests/API/Kitsu/Transformer/MangaListTransformerTest.php index cb05de12..da7847ac 100644 --- a/tests/API/Kitsu/Transformer/MangaListTransformerTest.php +++ b/tests/API/Kitsu/Transformer/MangaListTransformerTest.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/tests/API/Kitsu/Transformer/MangaTransformerTest.php b/tests/API/Kitsu/Transformer/MangaTransformerTest.php index 7be8e844..7ddcadea 100644 --- a/tests/API/Kitsu/Transformer/MangaTransformerTest.php +++ b/tests/API/Kitsu/Transformer/MangaTransformerTest.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/tests/API/KitsuTest.php b/tests/API/KitsuTest.php index 6364fcc6..a26c70c4 100644 --- a/tests/API/KitsuTest.php +++ b/tests/API/KitsuTest.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/tests/API/XMLTest.php b/tests/API/XMLTest.php index 67cb861b..1e0ae2b0 100644 --- a/tests/API/XMLTest.php +++ b/tests/API/XMLTest.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/tests/Command/BaseCommandTest.php b/tests/Command/BaseCommandTest.php index cb07840e..e6cc9d0e 100644 --- a/tests/Command/BaseCommandTest.php +++ b/tests/Command/BaseCommandTest.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License diff --git a/tests/Helper/MenuHelperTest.php b/tests/Helper/MenuHelperTest.php index 7ad23f8b..578746c6 100644 --- a/tests/Helper/MenuHelperTest.php +++ b/tests/Helper/MenuHelperTest.php @@ -1,12 +1,12 @@ * @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License