From 5f0f830aea9a8bde8ae72655fc4a1fcfa8032860 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 7 Feb 2017 13:27:41 -0500 Subject: [PATCH] Update headers and some whitespace --- src/API/Kitsu/KitsuTrait.php | 26 +++++++++---------- tests/API/CacheTraitTest.php | 14 ++++++++++ .../Transformer/AnimeListTransformerTest.php | 14 ++++++++++ .../Transformer/AnimeTransformerTest.php | 14 ++++++++++ .../Transformer/MangaListTransformerTest.php | 14 ++++++++++ .../Transformer/MangaTransformerTest.php | 14 ++++++++++ tests/API/KitsuTest.php | 14 ++++++++++ tests/API/XMLTest.php | 14 ++++++++++ 8 files changed, 111 insertions(+), 13 deletions(-) diff --git a/src/API/Kitsu/KitsuTrait.php b/src/API/Kitsu/KitsuTrait.php index 148c35c5..612ee747 100644 --- a/src/API/Kitsu/KitsuTrait.php +++ b/src/API/Kitsu/KitsuTrait.php @@ -27,24 +27,24 @@ use InvalidArgumentException; use RuntimeException; trait KitsuTrait { - + /** * The request builder for the MAL API * @var MALRequestBuilder */ protected $requestBuilder; - - /** - * The Guzzle http client object - * @var object - */ - protected $client; - /** - * Cookie jar object for api requests - * @var object - */ - protected $cookieJar; + /** + * The Guzzle http client object + * @var object + */ + protected $client; + + /** + * Cookie jar object for api requests + * @var object + */ + protected $cookieJar; /** * The base url for api requests @@ -64,7 +64,7 @@ trait KitsuTrait { 'client_id' => 'dd031b32d2f56c990b1425efe6c42ad847e7fe3ab46bf1299f05ecd856bdb7dd', 'client_secret' => '54d7307928f63414defd96399fc31ba847961ceaecef3a5fd93144e960c0e151', ]; - + /** * Set the request builder object * diff --git a/tests/API/CacheTraitTest.php b/tests/API/CacheTraitTest.php index 7f34b8eb..a221e4e4 100644 --- a/tests/API/CacheTraitTest.php +++ b/tests/API/CacheTraitTest.php @@ -1,4 +1,18 @@ + * @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\AnimeClient\Tests\API; diff --git a/tests/API/Kitsu/Transformer/AnimeListTransformerTest.php b/tests/API/Kitsu/Transformer/AnimeListTransformerTest.php index de87f29a..a18ace95 100644 --- a/tests/API/Kitsu/Transformer/AnimeListTransformerTest.php +++ b/tests/API/Kitsu/Transformer/AnimeListTransformerTest.php @@ -1,4 +1,18 @@ + * @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\AnimeClient\Tests\API\Kitsu\Transformer; diff --git a/tests/API/Kitsu/Transformer/AnimeTransformerTest.php b/tests/API/Kitsu/Transformer/AnimeTransformerTest.php index 7d50b096..a0adae93 100644 --- a/tests/API/Kitsu/Transformer/AnimeTransformerTest.php +++ b/tests/API/Kitsu/Transformer/AnimeTransformerTest.php @@ -1,4 +1,18 @@ + * @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\AnimeClient\Tests\API\Kitsu\Transformer; diff --git a/tests/API/Kitsu/Transformer/MangaListTransformerTest.php b/tests/API/Kitsu/Transformer/MangaListTransformerTest.php index 658e58cf..9c229a7a 100644 --- a/tests/API/Kitsu/Transformer/MangaListTransformerTest.php +++ b/tests/API/Kitsu/Transformer/MangaListTransformerTest.php @@ -1,4 +1,18 @@ + * @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\AnimeClient\Tests\API\Kitsu\Transformer; diff --git a/tests/API/Kitsu/Transformer/MangaTransformerTest.php b/tests/API/Kitsu/Transformer/MangaTransformerTest.php index eb5c3f05..1f2df8cd 100644 --- a/tests/API/Kitsu/Transformer/MangaTransformerTest.php +++ b/tests/API/Kitsu/Transformer/MangaTransformerTest.php @@ -1,4 +1,18 @@ + * @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\AnimeClient\Tests\API\Kitsu\Transformer; diff --git a/tests/API/KitsuTest.php b/tests/API/KitsuTest.php index 2d69e8dc..6364fcc6 100644 --- a/tests/API/KitsuTest.php +++ b/tests/API/KitsuTest.php @@ -1,4 +1,18 @@ + * @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\AnimeClient\Tests\API; diff --git a/tests/API/XMLTest.php b/tests/API/XMLTest.php index 12a1e724..67cb861b 100644 --- a/tests/API/XMLTest.php +++ b/tests/API/XMLTest.php @@ -1,4 +1,18 @@ + * @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\AnimeClient\Tests\API;