firefly-iii/app/Console/Kernel.php

42 lines
843 B
PHP
Raw Normal View History

<?php
/**
* 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.
*/
namespace FireflyIII\Console;
2015-02-05 21:39:52 -06:00
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
/**
* 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
*/
protected $commands = [
];
2015-02-05 21:39:52 -06:00
2015-02-11 00:35:10 -06:00
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
2015-02-11 00:35:10 -06:00
* @return void
*
* @SuppressWarnings(PHPMD.UnusedFormalParameters)
2015-02-11 00:35:10 -06:00
*/
protected function schedule(Schedule $schedule)
{
}
2015-02-05 21:39:52 -06:00
}