From 710f54c0156c5fa081bc6af1a68e7cb44723939b Mon Sep 17 00:00:00 2001
From: Santo Cariotti <santo@dcariotti.me>
Date: Mon, 24 Jan 2022 19:34:26 +0100
Subject: add example in laravel

---
 Year_3/TSDWL/LARAVEL/iBook/app/Console/Kernel.php | 32 +++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 Year_3/TSDWL/LARAVEL/iBook/app/Console/Kernel.php

(limited to 'Year_3/TSDWL/LARAVEL/iBook/app/Console')

diff --git a/Year_3/TSDWL/LARAVEL/iBook/app/Console/Kernel.php b/Year_3/TSDWL/LARAVEL/iBook/app/Console/Kernel.php
new file mode 100644
index 0000000..d8bc1d2
--- /dev/null
+++ b/Year_3/TSDWL/LARAVEL/iBook/app/Console/Kernel.php
@@ -0,0 +1,32 @@
+<?php
+
+namespace App\Console;
+
+use Illuminate\Console\Scheduling\Schedule;
+use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
+
+class Kernel extends ConsoleKernel
+{
+    /**
+     * 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');
+    }
+}
-- 
cgit v1.2.3-18-g5258