2016-01-08 16:02:15 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FireflyIII\Console;
|
2015-02-06 04:39:52 +01:00
|
|
|
|
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
|
2015-02-11 07:35:10 +01:00
|
|
|
class Kernel extends ConsoleKernel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The Artisan commands provided by your application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2016-01-08 16:02:15 +01:00
|
|
|
protected $commands = [
|
|
|
|
];
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2015-02-11 07:35:10 +01:00
|
|
|
/**
|
|
|
|
* Define the application's command schedule.
|
|
|
|
*
|
2016-01-08 16:02:15 +01:00
|
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
2015-02-11 07:35:10 +01:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function schedule(Schedule $schedule)
|
|
|
|
{
|
|
|
|
}
|
2015-02-06 04:39:52 +01:00
|
|
|
}
|