Version 5.1 - All the GraphQL #32
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient;
|
namespace Aviat\AnimeClient;
|
||||||
|
@ -1,4 +1,16 @@
|
|||||||
<?php declare(strict_types=1);
|
<?php declare(strict_types=1);
|
||||||
|
/**
|
||||||
|
* Hummingbird Anime List Client
|
||||||
|
*
|
||||||
|
* An API client for Kitsu to manage anime and manga watch lists
|
||||||
|
*
|
||||||
|
* PHP version 8
|
||||||
|
*
|
||||||
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
|
* @version 5.2
|
||||||
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient;
|
namespace Aviat\AnimeClient;
|
||||||
|
|
||||||
|
@ -5,11 +5,9 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,17 +1,18 @@
|
|||||||
<?php
|
<?php declare(strict_types=1);
|
||||||
declare(strict_types=1);
|
/**
|
||||||
|
* Hummingbird Anime List Client
|
||||||
|
*
|
||||||
|
* An API client for Kitsu to manage anime and manga watch lists
|
||||||
|
*
|
||||||
|
* PHP version 8
|
||||||
|
*
|
||||||
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
|
* @version 5.2
|
||||||
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
|
*/
|
||||||
|
|
||||||
$file_patterns = [
|
namespace Aviat\Ion\Etc;
|
||||||
'app/appConf/*.php',
|
|
||||||
'app/bootstrap.php',
|
|
||||||
'migrations/*.php',
|
|
||||||
'src/**/*.php',
|
|
||||||
'src/*.php',
|
|
||||||
'tests/**/*.php',
|
|
||||||
'tests/*.php',
|
|
||||||
'index.php',
|
|
||||||
'Robofile.php'
|
|
||||||
];
|
|
||||||
|
|
||||||
if ( ! function_exists('glob_recursive'))
|
if ( ! function_exists('glob_recursive'))
|
||||||
{
|
{
|
||||||
@ -58,42 +59,31 @@ function get_text_to_replace(array $tokens): string
|
|||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_tokens(string $source): array
|
function replace_file(string $file, string $template): void
|
||||||
{
|
{
|
||||||
return token_get_all($source);
|
$source = file_get_contents($file);
|
||||||
}
|
if ($source === FALSE || stripos($source, 'namespace') === FALSE)
|
||||||
|
|
||||||
function replace_files(array $files, string $template): void
|
|
||||||
{
|
|
||||||
print_r($files);
|
|
||||||
foreach ($files as $file)
|
|
||||||
{
|
{
|
||||||
$source = file_get_contents($file);
|
return;
|
||||||
if ($source === FALSE)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stripos($source, 'namespace') === FALSE)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$tokens = get_tokens($source);
|
|
||||||
$text_to_replace = get_text_to_replace($tokens);
|
|
||||||
|
|
||||||
$header = file_get_contents(__DIR__ . $template);
|
|
||||||
$new_text = "<?php declare(strict_types=1);\n{$header}";
|
|
||||||
|
|
||||||
$new_source = str_replace($text_to_replace, $new_text, $source);
|
|
||||||
file_put_contents($file, $new_source);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$tokens = token_get_all($source);
|
||||||
|
$text_to_replace = get_text_to_replace($tokens);
|
||||||
|
|
||||||
|
$header = file_get_contents(__DIR__ . $template);
|
||||||
|
$new_text = "<?php declare(strict_types=1);\n{$header}";
|
||||||
|
|
||||||
|
$new_source = str_replace($text_to_replace, $new_text, $source);
|
||||||
|
file_put_contents($file, $new_source);
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($file_patterns as $glob)
|
// ----------------------------------------------------------------------------
|
||||||
{
|
|
||||||
$files = glob_recursive($glob);
|
|
||||||
replace_files($files, '/header_comment.txt');
|
|
||||||
}
|
|
||||||
|
|
||||||
echo "Successfully updated headers \n";
|
$files = array_filter(
|
||||||
|
glob_recursive('*.php'),
|
||||||
|
fn (string $file) => ! (str_contains($file, '/vendor/') || str_contains($file, '/tmp/'))
|
||||||
|
);
|
||||||
|
array_walk($files, fn (string $file) => replace_file($file, '/header_comment.txt'));
|
||||||
|
|
||||||
|
echo json_encode(array_values($files), JSON_PRETTY_PRINT | JSON_THROW_ON_ERROR) . "\n";
|
||||||
|
printf("Successfully updated header comments in %d files\n", count($files));
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient;
|
namespace Aviat\AnimeClient;
|
||||||
|
4
justfile
4
justfile
@ -26,6 +26,10 @@ test:
|
|||||||
test-update:
|
test-update:
|
||||||
composer run-script test-update
|
composer run-script test-update
|
||||||
|
|
||||||
|
# Update the per-file header comments
|
||||||
|
update-headers:
|
||||||
|
php build/update_header_comments.php
|
||||||
|
|
||||||
# Run unit tests and generate test-coverage report
|
# Run unit tests and generate test-coverage report
|
||||||
coverage:
|
coverage:
|
||||||
composer run-script coverage
|
composer run-script coverage
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API;
|
namespace Aviat\AnimeClient\API;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API;
|
namespace Aviat\AnimeClient\API;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Anilist;
|
namespace Aviat\AnimeClient\API\Anilist;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Anilist;
|
namespace Aviat\AnimeClient\API\Anilist;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Anilist;
|
namespace Aviat\AnimeClient\API\Anilist;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Anilist;
|
namespace Aviat\AnimeClient\API\Anilist;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Anilist;
|
namespace Aviat\AnimeClient\API\Anilist;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Anilist\Transformer;
|
namespace Aviat\AnimeClient\API\Anilist\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Anilist\Transformer;
|
namespace Aviat\AnimeClient\API\Anilist\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Anilist\Types;
|
namespace Aviat\AnimeClient\API\Anilist\Types;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API;
|
namespace Aviat\AnimeClient\API;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Enum\AnimeWatchingStatus;
|
namespace Aviat\AnimeClient\API\Enum\AnimeWatchingStatus;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Enum\AnimeWatchingStatus;
|
namespace Aviat\AnimeClient\API\Enum\AnimeWatchingStatus;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Enum\AnimeWatchingStatus;
|
namespace Aviat\AnimeClient\API\Enum\AnimeWatchingStatus;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Enum\AnimeWatchingStatus;
|
namespace Aviat\AnimeClient\API\Enum\AnimeWatchingStatus;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Enum\MangaReadingStatus;
|
namespace Aviat\AnimeClient\API\Enum\MangaReadingStatus;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Enum\MangaReadingStatus;
|
namespace Aviat\AnimeClient\API\Enum\MangaReadingStatus;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Enum\MangaReadingStatus;
|
namespace Aviat\AnimeClient\API\Enum\MangaReadingStatus;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Enum\MangaReadingStatus;
|
namespace Aviat\AnimeClient\API\Enum\MangaReadingStatus;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API;
|
namespace Aviat\AnimeClient\API;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu;
|
namespace Aviat\AnimeClient\API\Kitsu;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Enum;
|
namespace Aviat\AnimeClient\API\Kitsu\Enum;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Enum;
|
namespace Aviat\AnimeClient\API\Kitsu\Enum;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu;
|
namespace Aviat\AnimeClient\API\Kitsu;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu;
|
namespace Aviat\AnimeClient\API\Kitsu;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu;
|
namespace Aviat\AnimeClient\API\Kitsu;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu;
|
namespace Aviat\AnimeClient\API\Kitsu;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu;
|
namespace Aviat\AnimeClient\API\Kitsu;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Mapping;
|
namespace Aviat\AnimeClient\API\Mapping;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API\Mapping;
|
namespace Aviat\AnimeClient\API\Mapping;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\API;
|
namespace Aviat\AnimeClient\API;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient;
|
namespace Aviat\AnimeClient;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient;
|
namespace Aviat\AnimeClient;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Command;
|
namespace Aviat\AnimeClient\Command;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Command;
|
namespace Aviat\AnimeClient\Command;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Command;
|
namespace Aviat\AnimeClient\Command;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Command;
|
namespace Aviat\AnimeClient\Command;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Command;
|
namespace Aviat\AnimeClient\Command;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Command;
|
namespace Aviat\AnimeClient\Command;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Component;
|
namespace Aviat\AnimeClient\Component;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Component;
|
namespace Aviat\AnimeClient\Component;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Component;
|
namespace Aviat\AnimeClient\Component;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Component;
|
namespace Aviat\AnimeClient\Component;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Component;
|
namespace Aviat\AnimeClient\Component;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Component;
|
namespace Aviat\AnimeClient\Component;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Component;
|
namespace Aviat\AnimeClient\Component;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient;
|
namespace Aviat\AnimeClient;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Controller;
|
namespace Aviat\AnimeClient\Controller;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Controller;
|
namespace Aviat\AnimeClient\Controller;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Controller;
|
namespace Aviat\AnimeClient\Controller;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Controller;
|
namespace Aviat\AnimeClient\Controller;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Controller;
|
namespace Aviat\AnimeClient\Controller;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Controller;
|
namespace Aviat\AnimeClient\Controller;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Controller;
|
namespace Aviat\AnimeClient\Controller;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Controller;
|
namespace Aviat\AnimeClient\Controller;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Controller;
|
namespace Aviat\AnimeClient\Controller;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Controller;
|
namespace Aviat\AnimeClient\Controller;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient;
|
namespace Aviat\AnimeClient;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Enum;
|
namespace Aviat\AnimeClient\Enum;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Enum;
|
namespace Aviat\AnimeClient\Enum;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Enum;
|
namespace Aviat\AnimeClient\Enum;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Enum;
|
namespace Aviat\AnimeClient\Enum;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient;
|
namespace Aviat\AnimeClient;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Helper;
|
namespace Aviat\AnimeClient\Helper;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Helper;
|
namespace Aviat\AnimeClient\Helper;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Helper;
|
namespace Aviat\AnimeClient\Helper;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient;
|
namespace Aviat\AnimeClient;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient;
|
namespace Aviat\AnimeClient;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Model;
|
namespace Aviat\AnimeClient\Model;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Model;
|
namespace Aviat\AnimeClient\Model;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Model;
|
namespace Aviat\AnimeClient\Model;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Model;
|
namespace Aviat\AnimeClient\Model;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Model;
|
namespace Aviat\AnimeClient\Model;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Model;
|
namespace Aviat\AnimeClient\Model;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Model;
|
namespace Aviat\AnimeClient\Model;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Model;
|
namespace Aviat\AnimeClient\Model;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient;
|
namespace Aviat\AnimeClient;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Types;
|
namespace Aviat\AnimeClient\Types;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Types;
|
namespace Aviat\AnimeClient\Types;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Types;
|
namespace Aviat\AnimeClient\Types;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Types;
|
namespace Aviat\AnimeClient\Types;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Types;
|
namespace Aviat\AnimeClient\Types;
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
*
|
*
|
||||||
* PHP version 8
|
* PHP version 8
|
||||||
*
|
*
|
||||||
* @package HummingbirdAnimeClient
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
||||||
* @author Timothy J. Warren <tim@timshome.page>
|
|
||||||
* @copyright 2015 - 2022 Timothy J. Warren
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
* @version 5.2
|
* @version 5.2
|
||||||
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Aviat\AnimeClient\Types;
|
namespace Aviat\AnimeClient\Types;
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user