firefly-iii/app/Console/Kernel.php

72 lines
2.2 KiB
PHP
Raw Normal View History

<?php
2018-05-11 03:08:34 -05:00
2017-10-21 01:40:00 -05:00
/**
* Kernel.php
2018-05-11 03:08:34 -05:00
* Copyright (c) 2018 thegrumpydictator@gmail.com
2017-10-21 01:40:00 -05:00
*
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 07:41:58 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2017-10-21 01:40:00 -05:00
*/
2017-09-14 10:40:02 -05:00
2018-05-11 03:08:34 -05:00
declare(strict_types=1);
namespace FireflyIII\Console;
2015-02-05 21:39:52 -06:00
2017-09-09 14:57:24 -05:00
use Illuminate\Console\Scheduling\Schedule;
2015-02-05 21:39:52 -06:00
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
2018-08-18 07:08:28 -05:00
use Log;
2015-02-05 21:39:52 -06:00
2017-09-16 00:41:03 -05:00
/**
2018-06-24 06:23:08 -05:00
* File to make sure commands work.
2017-09-16 00:41:03 -05:00
*/
2015-02-11 00:35:10 -06:00
class Kernel extends ConsoleKernel
{
/**
2017-09-14 10:40:02 -05:00
* Register the commands for the application.
2015-02-11 00:35:10 -06:00
*/
2018-06-24 06:23:08 -05:00
protected function commands(): void
2017-09-09 14:57:24 -05:00
{
2017-09-14 10:40:02 -05:00
$this->load(__DIR__ . '/Commands');
2018-07-05 14:18:53 -05:00
/** @noinspection PhpIncludeInspection */
2017-09-14 10:40:02 -05:00
require base_path('routes/console.php');
2017-09-09 14:57:24 -05:00
}
2016-09-15 23:40:45 -05:00
/**
2017-09-14 10:40:02 -05:00
* Define the application's command schedule.
*
2017-11-15 05:25:49 -06:00
* @param \Illuminate\Console\Scheduling\Schedule $schedule
2016-09-15 23:40:45 -05:00
*/
protected function schedule(Schedule $schedule): void
2016-09-15 23:40:45 -05:00
{
2018-08-18 07:08:28 -05:00
$schedule->call(
function () {
Log::error('Firefly III no longer users the Laravel scheduler to do cron jobs! Please read the instructions at https://firefly-iii.readthedocs.io/en/latest/');
echo "\n";
echo '------------';
echo "\n";
echo wordwrap('Firefly III no longer users the Laravel scheduler to do cron jobs! Please read the instructions here:');
echo "\n";
echo 'https://firefly-iii.readthedocs.io/en/latest/';
echo "\n\n";
echo 'Disable this cron job!';
echo "\n";
echo '------------';
echo "\n";
}
)->everyMinute();
2016-09-15 23:40:45 -05:00
}
2015-02-05 21:39:52 -06:00
}