Code Duplication    Length = 7-7 lines in 2 locations

src/API/Kitsu/Enum/AnimeWatchingStatus.php 1 location

@@ 24-30 (lines=7) @@
21
/**
22
 * Possible values for watching status for the current anime
23
 */
24
class AnimeWatchingStatus extends BaseEnum {
25
	const WATCHING = 'current';
26
	const PLAN_TO_WATCH = 'planned';
27
	const COMPLETED = 'completed';
28
	const ON_HOLD = 'on_hold';
29
	const DROPPED = 'dropped';
30
}

src/API/Kitsu/Enum/MangaReadingStatus.php 1 location

@@ 24-30 (lines=7) @@
21
/**
22
 * Possible values for current reading status of manga
23
 */
24
class MangaReadingStatus extends BaseEnum {
25
	const READING = 'current';
26
	const PLAN_TO_READ = 'planned';
27
	const DROPPED = 'dropped';
28
	const ON_HOLD = 'on_hold';
29
	const COMPLETED = 'completed';
30
}
31
// End of MangaReadingStatus.php