There's actually no support out of the box for this, unfortunately. What you'll have to do is extend the artisan schedule
command and add a list
feature. Thankfully there's a simple class you can run:
<?php
namespace AppConsoleCommands;
use IlluminateConsoleCommand;
use IlluminateConsoleSchedulingSchedule;
class ScheduleList extends Command
{
protected $signature = 'schedule:list';
protected $description = 'List when scheduled commands are executed.';
/**
* @var Schedule
*/
protected $schedule;
/**
* ScheduleList constructor.
*
* @param Schedule $schedule
*/
public function __construct(Schedule $schedule)
{
parent::__construct();
$this->schedule = $schedule;
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$events = array_map(function ($event) {
return [
'cron' => $event->expression,
'command' => static::fixupCommand($event->command),
];
}, $this->schedule->events());
$this->table(
['Cron', 'Command'],
$events
);
}
/**
* If it's an artisan command, strip off the PHP
*
* @param $command
* @return string
*/
protected static function fixupCommand($command)
{
$parts = explode(' ', $command);
if (count($parts) > 2 && $parts[1] === "'artisan'") {
array_shift($parts);
}
return implode(' ', $parts);
}
}
This will provide you with a php artisan schedule:list
. Now that's not exactly what you need, but then you can easily get this list from within your Laravel stack by executing:
Artisan::call('schedule:list');
And that will provide you with a list of the schedule commands.
Of course, don't forget to inject the Facade
: use IlluminateSupportFacadesArtisan;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…