Kernel.php 928 Bytes
Newer Older
Graham Campbell committed
1 2 3
<?php

namespace App\Console;
4

Taylor Otwell committed
5
use Illuminate\Console\Scheduling\Schedule;
6 7
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;

Taylor Otwell committed
8 9 10 11 12 13 14 15
class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
16
        // Commands\Inspire::class,
Taylor Otwell committed
17
    ];
18

Taylor Otwell committed
19 20 21 22 23 24 25 26
    /**
     * Define the application's command schedule.
     *
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
27 28
        // $schedule->command('inspire')
        //          ->hourly();
Taylor Otwell committed
29
    }
30 31 32 33 34 35 36 37 38 39 40 41

    /**
     * Register the Closure based commands for the application.
     *
     * @return void
     */
    protected function commands()
    {
        // $this->command('build {project}', function ($project) {
        //     $this->info('Building project...');
        // });
    }
42
}