HummingBirdAnimeClient/src/AnimeClient/API/Enum/MangaReadingStatus/Title.php

32 lines
891 B
PHP
Raw Normal View History

2017-03-01 21:52:30 -05:00
<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
2017-03-01 21:52:30 -05:00
*
* PHP version 7.4
2017-03-01 21:52:30 -05:00
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2020-01-08 15:39:49 -05:00
* @copyright 2015 - 2020 Timothy J. Warren
2017-03-01 21:52:30 -05:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-08-04 09:30:21 -04:00
* @version 5.1
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
2017-03-01 21:52:30 -05:00
*/
namespace Aviat\AnimeClient\API\Enum\MangaReadingStatus;
use Aviat\Ion\Enum;
2017-03-01 21:52:30 -05:00
/**
* Possible values for current reading status of manga
*/
final class Title extends Enum {
2018-11-09 10:38:35 -05:00
public const ALL = 'All';
public const READING = 'Currently Reading';
public const PLAN_TO_READ = 'Plan to Read';
public const DROPPED = 'Dropped';
public const ON_HOLD = 'On Hold';
public const COMPLETED = 'Completed';
2017-03-01 21:52:30 -05:00
}