From c83e876693bdb71c66418c13f5e09dfdaef24478 Mon Sep 17 00:00:00 2001 From: Fbenas Date: Thu, 18 Jun 2020 16:00:16 +0100 Subject: Init laravel --- app/Console/Kernel.php | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 app/Console/Kernel.php (limited to 'app/Console') 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 @@ +command('inspire')->hourly(); + } + + /** + * Register the commands for the application. + * + * @return void + */ + protected function commands() + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} -- cgit v1.2.3