2016-01-08 09:02:15 -06:00
|
|
|
<?php
|
2016-01-09 01:20:55 -06:00
|
|
|
/**
|
|
|
|
* Kernel.php
|
|
|
|
* Copyright (C) 2016 Sander Dorigo
|
|
|
|
*
|
|
|
|
* This software may be modified and distributed under the terms
|
|
|
|
* of the MIT license. See the LICENSE file for details.
|
|
|
|
*/
|
2016-01-08 09:02:15 -06:00
|
|
|
|
|
|
|
namespace FireflyIII\Console;
|
2015-02-05 21:39:52 -06:00
|
|
|
|
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
|
2016-01-09 01:20:55 -06:00
|
|
|
/**
|
|
|
|
* Class Kernel
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Console
|
|
|
|
*/
|
2015-02-11 00:35:10 -06:00
|
|
|
class Kernel extends ConsoleKernel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The Artisan commands provided by your application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2016-01-08 09:02:15 -06:00
|
|
|
protected $commands = [
|
|
|
|
];
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2015-02-11 00:35:10 -06:00
|
|
|
/**
|
|
|
|
* Define the application's command schedule.
|
|
|
|
*
|
2016-01-08 09:02:15 -06:00
|
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
2015-02-11 00:35:10 -06:00
|
|
|
* @return void
|
2016-01-15 11:21:59 -06:00
|
|
|
*
|
|
|
|
* @SuppressWarnings(PHPMD.UnusedFormalParameters)
|
2015-02-11 00:35:10 -06:00
|
|
|
*/
|
|
|
|
protected function schedule(Schedule $schedule)
|
|
|
|
{
|
|
|
|
}
|
2015-02-05 21:39:52 -06:00
|
|
|
}
|