summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhorus2020-10-05 22:16:10 +0200
committerhorus2020-10-05 22:16:10 +0200
commit5359b569156ade4be06e3b7e6c26b0ec91ae1037 (patch)
treeefb15a2a8e4f40009bc32058a30b2128fd816b19
parent17fad122eff66bef6f1cd8986a9a09a471770b12 (diff)
downloadsenpai-5359b569156ade4be06e3b7e6c26b0ec91ae1037.tar.gz
delete unused code
-rw-r--r--app/Http/Controllers/AnimeController.php9
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');