2015-02-06 04:52:16 +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
|
|
|
|
*
|
2015-05-10 08:08:07 +02:00
|
|
|
* @codeCoverageIgnore
|
2015-02-11 07:35:10 +01:00
|
|
|
* @package FireflyIII\Console
|
|
|
|
*/
|
|
|
|
class Kernel extends ConsoleKernel
|
|
|
|
{
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2015-02-11 07:35:10 +01:00
|
|
|
/**
|
|
|
|
* The Artisan commands provided by your application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $commands
|
|
|
|
= [
|
|
|
|
];
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2015-02-11 07:35:10 +01:00
|
|
|
/**
|
|
|
|
* Define the application's command schedule.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
|
|
*
|
2015-05-17 10:10:58 +02:00
|
|
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
|
|
|
*
|
2015-02-11 07:35:10 +01:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function schedule(Schedule $schedule)
|
|
|
|
{
|
|
|
|
}
|
2015-02-06 04:39:52 +01:00
|
|
|
|
|
|
|
}
|