diff options
author | Mateja <mail@matejamaric.com> | 2020-10-07 18:41:35 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-10-07 18:41:35 +0200 |
commit | b981dc8715b36c83107de4c2868e3410a6faf457 (patch) | |
tree | 899a97261d0b901740cfbd949fc0839bb7a1e607 /app/Console | |
download | yota-laravel-b981dc8715b36c83107de4c2868e3410a6faf457.tar.gz yota-laravel-b981dc8715b36c83107de4c2868e3410a6faf457.zip |
First commit
Diffstat (limited to 'app/Console')
-rw-r--r-- | app/Console/Kernel.php | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php new file mode 100644 index 0000000..69914e9 --- /dev/null +++ b/app/Console/Kernel.php @@ -0,0 +1,41 @@ +<?php + +namespace App\Console; + +use Illuminate\Console\Scheduling\Schedule; +use Illuminate\Foundation\Console\Kernel as ConsoleKernel; + +class Kernel extends ConsoleKernel +{ + /** + * The Artisan commands provided by your application. + * + * @var array + */ + protected $commands = [ + // + ]; + + /** + * Define the application's command schedule. + * + * @param \Illuminate\Console\Scheduling\Schedule $schedule + * @return void + */ + protected function schedule(Schedule $schedule) + { + // $schedule->command('inspire')->hourly(); + } + + /** + * Register the commands for the application. + * + * @return void + */ + protected function commands() + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} |