AnimeWatchingStatus
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 7
c 0
b 0
f 0
wmc 0
lcom 0
cbo 1
1
<?php declare(strict_types=1);
2
/**
3
 * Anime List Client
4
 *
5
 * An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
6
 *
7
 * PHP version 7
8
 *
9
 * @package     AnimeListClient
10
 * @author      Timothy J. Warren <[email protected]>
11
 * @copyright   2015 - 2017  Timothy J. Warren
12
 * @license     http://www.opensource.org/licenses/mit-license.html  MIT License
13
 * @version     4.0
14
 * @link        https://github.com/timw4mail/HummingBirdAnimeClient
15
 */
16
17
namespace Aviat\AnimeClient\API\MAL\Enum;
18
19
use Aviat\Ion\Enum as BaseEnum;
20
21
/**
22
 * Possible values for watching status for the current anime
23
 */
24
class AnimeWatchingStatus extends BaseEnum {
25
	const WATCHING = 1;
26
	const COMPLETED = 2;
27
	const ON_HOLD = 3;
28
	const DROPPED = 4;
29
	const PLAN_TO_WATCH = 6;
30
}