2016-12-20 12:55:43 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Anime List Client
|
|
|
|
*
|
|
|
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
|
|
|
*
|
|
|
|
* PHP version 7
|
|
|
|
*
|
|
|
|
* @package AnimeListClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2017-01-11 10:30:53 -05:00
|
|
|
* @copyright 2015 - 2017 Timothy J. Warren
|
2016-12-20 12:55:43 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @version 4.0
|
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
2017-01-11 10:34:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API\Kitsu\Enum;
|
2016-12-20 12:55:43 -05:00
|
|
|
|
|
|
|
use Aviat\Ion\Enum as BaseEnum;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Possible values for current reading status of manga
|
|
|
|
*/
|
|
|
|
class MangaReadingStatus extends BaseEnum {
|
2017-01-09 20:36:48 -05:00
|
|
|
const READING = 'current';
|
|
|
|
const PLAN_TO_READ = 'planned';
|
|
|
|
const DROPPED = 'dropped';
|
|
|
|
const ON_HOLD = 'on_hold';
|
|
|
|
const COMPLETED = 'completed';
|
2016-12-20 12:55:43 -05:00
|
|
|
}
|
2017-01-04 13:16:58 -05:00
|
|
|
// End of MangaReadingStatus.php
|