2020-04-22 11:39:44 -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-22 11:39:44 -04:00
|
|
|
*
|
2022-03-04 15:50:35 -05:00
|
|
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
2020-04-22 11:39:44 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-12-10 17:06:50 -05:00
|
|
|
* @version 5.2
|
2022-03-04 15:50:35 -05:00
|
|
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
2020-04-22 11:39:44 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
|
|
|
|
|
|
|
use Aviat\AnimeClient\API\Mapping\MangaReadingStatus;
|
|
|
|
|
2022-03-03 17:26:09 -05:00
|
|
|
class MangaHistoryTransformer extends HistoryTransformer
|
|
|
|
{
|
2020-04-22 12:38:59 -04:00
|
|
|
protected string $type = 'manga';
|
2020-04-22 17:53:25 -04:00
|
|
|
protected string $progressAction = 'Read chapter';
|
2020-04-24 14:14:52 -04:00
|
|
|
protected string $reconsumeAction = 'Reread chapter';
|
2020-04-22 17:53:25 -04:00
|
|
|
protected string $largeAggregateAction = 'Blew through chapters';
|
2020-04-24 14:14:52 -04:00
|
|
|
protected string $reconsumingStatus = 'Rereading';
|
2020-04-22 17:53:25 -04:00
|
|
|
protected array $statusMap = MangaReadingStatus::KITSU_TO_TITLE;
|
2022-03-03 17:26:09 -05:00
|
|
|
}
|