2018-08-10 20:10:19 -04: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
|
2018-08-10 20:10:19 -04:00
|
|
|
*
|
|
|
|
* PHP version 7
|
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
|
|
* @copyright 2015 - 2018 Timothy J. Warren
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @version 4.0
|
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API\Enum\MangaReadingStatus;
|
|
|
|
|
|
|
|
use Aviat\Ion\Enum;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Possible values for watching status for the current anime
|
|
|
|
*/
|
|
|
|
final class Anilist extends Enum {
|
2018-08-15 14:05:28 -04:00
|
|
|
const READING = 'CURRENT';
|
2018-08-10 20:10:19 -04:00
|
|
|
const COMPLETED = 'COMPLETED';
|
|
|
|
const ON_HOLD = 'PAUSED';
|
|
|
|
const DROPPED = 'DROPPED';
|
2018-08-15 14:05:28 -04:00
|
|
|
const PLAN_TO_READ = 'PLANNING';
|
2018-08-10 20:10:19 -04:00
|
|
|
const REPEATING = 'REPEATING';
|
|
|
|
}
|