2017-03-01 22:07:51 -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 22:07:51 -05:00
|
|
|
*
|
|
|
|
* PHP version 7
|
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2018-01-15 14:43:15 -05:00
|
|
|
* @copyright 2015 - 2018 Timothy J. Warren
|
2017-03-01 22:07:51 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @version 4.0
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-03-01 22:07:51 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API\Enum\AnimeWatchingStatus;
|
|
|
|
|
|
|
|
use Aviat\Ion\Enum as Enum;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Possible values for current watching status of anime
|
|
|
|
*/
|
2018-08-08 10:12:45 -04:00
|
|
|
final class Route extends Enum {
|
2017-03-01 22:07:51 -05:00
|
|
|
const ALL = 'all';
|
|
|
|
const WATCHING = 'watching';
|
|
|
|
const PLAN_TO_WATCH = 'plan_to_watch';
|
|
|
|
const DROPPED = 'dropped';
|
|
|
|
const ON_HOLD = 'on_hold';
|
|
|
|
const COMPLETED = 'completed';
|
|
|
|
}
|