Attendize/app/Console/Kernel.php

28 lines
511 B
PHP
Raw Normal View History

2016-02-29 15:59:36 +00:00
<?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 = [
2016-03-04 01:33:54 +00:00
Commands\Install::class
2016-02-29 15:59:36 +00:00
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
}
}