Code Duplication    Length = 10-10 lines in 2 locations

src/API/Kitsu.php 2 locations

@@ 43-52 (lines=10) @@
40
	 *
41
	 * @return array
42
	 */
43
	public static function getStatusToSelectMap()
44
	{
45
		return [
46
			AnimeWatchingStatus::WATCHING => 'Currently Watching',
47
			AnimeWatchingStatus::PLAN_TO_WATCH => 'Plan to Watch',
48
			AnimeWatchingStatus::COMPLETED => 'Completed',
49
			AnimeWatchingStatus::ON_HOLD => 'On Hold',
50
			AnimeWatchingStatus::DROPPED => 'Dropped'
51
		];
52
	}
53
54
	/**
55
	 * Map of Kitsu Manga status to label for select menus
@@ 59-68 (lines=10) @@
56
	 *
57
	 * @return array
58
	 */
59
	public static function getStatusToMangaSelectMap()
60
	{
61
		return [
62
			MangaReadingStatus::READING => 'Currently Reading',
63
			MangaReadingStatus::PLAN_TO_READ => 'Plan to Read',
64
			MangaReadingStatus::COMPLETED => 'Completed',
65
			MangaReadingStatus::ON_HOLD => 'On Hold',
66
			MangaReadingStatus::DROPPED => 'Dropped'
67
		];
68
	}
69
70
	/**
71
	 * Determine whether an anime is airing, finished airing, or has not yet aired