HummingBirdAnimeClient/src/AnimeClient/API/Kitsu/Transformer/AnimeHistoryTransformer.php

33 lines
992 B
PHP
Raw Normal View History

2020-04-21 19:22:56 -04:00
<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
* An API client for Kitsu to manage anime and manga watch lists
*
2021-02-04 11:57:01 -05:00
* PHP version 8
2020-04-21 19:22:56 -04:00
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2021-01-13 01:52:03 -05:00
* @copyright 2015 - 2021 Timothy J. Warren
2020-04-21 19:22:56 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
2020-04-21 19:22:56 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
use Aviat\AnimeClient\API\Mapping\AnimeWatchingStatus;
2020-04-22 12:38:59 -04:00
class AnimeHistoryTransformer extends HistoryTransformer {
protected string $type = 'anime';
2020-04-21 19:22:56 -04:00
protected string $progressAction = 'Watched episode';
2020-04-24 14:14:52 -04:00
protected string $reconsumeAction = 'Rewatched episode';
protected string $largeAggregateAction = 'Marathoned episodes';
2020-04-24 14:14:52 -04:00
protected string $reconsumingStatus = 'Rewatching';
2020-04-22 12:38:59 -04:00
protected array $statusMap = AnimeWatchingStatus::KITSU_TO_TITLE;
2020-04-21 19:22:56 -04:00
}