Skip to content

Commit

Permalink
[Update] Episode Category Types
Browse files Browse the repository at this point in the history
- Added `Episodes` case
  • Loading branch information
kiritokatklian committed Aug 20, 2024
1 parent dbbe8f4 commit cbd68e0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/Enums/ExploreCategoryTypes.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
use BenSampo\Enum\Enum;

/**
* @method static ExploreCategoryTypes UpNextEpisodes()
* @method static ExploreCategoryTypes Shows()
* @method static ExploreCategoryTypes MostPopularShows()
* @method static ExploreCategoryTypes ContinuingShows()
Expand All @@ -29,6 +28,8 @@
* @method static ExploreCategoryTypes NewGames()
* @method static ExploreCategoryTypes RecentlyUpdateGames()
* @method static ExploreCategoryTypes Characters()
* @method static ExploreCategoryTypes UpNextEpisodes()
* @method static ExploreCategoryTypes Episodes()
* @method static ExploreCategoryTypes People()
* @method static ExploreCategoryTypes Genres()
* @method static ExploreCategoryTypes Themes()
Expand All @@ -37,7 +38,6 @@
*/
final class ExploreCategoryTypes extends Enum
{
const string UpNextEpisodes = 'up-next-episodes';
const string Shows = 'shows';
const string MostPopularShows = 'most-popular-shows';
const string ContinuingShows = 'anime-continuing';
Expand All @@ -61,6 +61,8 @@ final class ExploreCategoryTypes extends Enum
const string NewGames = 'new-games';
const string RecentlyUpdateGames = 'recently-update-games';
const string Characters = 'characters';
const string UpNextEpisodes = 'up-next-episodes';
const string Episodes = 'episodes';
const string People = 'people';
const string Genres = 'genres';
const string Themes = 'themes';
Expand Down

0 comments on commit cbd68e0

Please sign in to comment.