Attendize/app/Console/Kernel.php

30 lines
570 B
PHP
Raw Normal View History

2016-03-05 00:18:10 +00:00
<?php
namespace App\Console;
2016-02-29 15:59:36 +00:00
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
2016-03-05 00:18:10 +00:00
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
Commands\Install::class,
];
2016-02-29 15:59:36 +00:00
2016-03-05 00:18:10 +00:00
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
*
* @return void
*/
protected function schedule(Schedule $schedule)
{
}
2016-02-29 15:59:36 +00:00
}