diff options
| author | horus | 2020-10-05 22:16:10 +0200 |
|---|---|---|
| committer | horus | 2020-10-05 22:16:10 +0200 |
| commit | 5359b569156ade4be06e3b7e6c26b0ec91ae1037 (patch) | |
| tree | efb15a2a8e4f40009bc32058a30b2128fd816b19 /app | |
| parent | 17fad122eff66bef6f1cd8986a9a09a471770b12 (diff) | |
| download | senpai-5359b569156ade4be06e3b7e6c26b0ec91ae1037.tar.gz | |
delete unused code
Diffstat (limited to 'app')
| -rw-r--r-- | app/Http/Controllers/AnimeController.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/app/Http/Controllers/AnimeController.php b/app/Http/Controllers/AnimeController.php index e99f2f1..662b6cc 100644 --- a/app/Http/Controllers/AnimeController.php +++ b/app/Http/Controllers/AnimeController.php @@ -128,15 +128,6 @@ class AnimeController extends Controller { return view('list_anime', ["all_anime" => $anime, "title" => "Currently Airing"]); } - private function _getFieldSeasonName() { - $first = (int)date("m"); - $second = nextSeason($first); - $third = nextSeason($second); - $fourth = nextSeason($third); - - return '"' . getSeason($first) . '", "' . getSeason($second) . '", "' . getSeason($third) . '", "' . getSeason($fourth) . '"'; - } - public function showSurprisingAnime() { $anime = new Anime; $most_surprising_anime = $anime->setTable('view_anime_index'); |
