HummingBirdAnimeClient/src/API/Kitsu/Enum/MangaReadingStatus.php

31 lines
799 B
PHP
Raw Normal View History

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>
* @copyright 2015 - 2016 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 4.0
* @link https://github.com/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\API\Kitsu\Enum;
use Aviat\Ion\Enum as BaseEnum;
/**
* Possible values for current reading status of manga
*/
class MangaReadingStatus extends BaseEnum {
2017-01-03 21:06:49 -05:00
const READING = 1;
const PLAN_TO_READ = 2;
2017-01-04 13:16:58 -05:00
const DROPPED = 5;
2017-01-03 21:06:49 -05:00
const ON_HOLD = 4;
2017-01-04 13:16:58 -05:00
const COMPLETED = 3;
2016-12-20 12:55:43 -05:00
}
2017-01-04 13:16:58 -05:00
// End of MangaReadingStatus.php