diff options
| author | horus | 2020-03-05 22:24:28 +0100 |
|---|---|---|
| committer | horus | 2020-03-05 22:24:36 +0100 |
| commit | 38ad5415db862e24da03ee194ef723540f9848a6 (patch) | |
| tree | 2f9a5bf2f53029bc21c338d9ef865638d69c8454 /app/Console | |
| parent | 095aba3e990afe5b181524e4830dc4d85e9475be (diff) | |
| download | senpai-38ad5415db862e24da03ee194ef723540f9848a6.tar.gz | |
Basic usage implemented.
Diffstat (limited to 'app/Console')
| -rw-r--r-- | app/Console/Kernel.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index fa58874..e3fb5c4 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -7,6 +7,7 @@ use Illuminate\Foundation\Console\Kernel as ConsoleKernel; use App\Libraries\AnimeSeason; use App\Libraries\Helper; +use App\Libraries\Background; class Kernel extends ConsoleKernel { @@ -35,6 +36,8 @@ class Kernel extends ConsoleKernel #$helper = new Helper(); #$helper->setAiringForAll(); #$helper->setCalendar( 'll-' ); + $background = new Background(); + #$background->checkIfIsAiring(); }); } |
