Файл: gapps/vendor/laravel/framework/src/Illuminate/Queue/Console/RestartCommand.php
Строк: 31
<?php
namespace IlluminateQueueConsole;
use IlluminateConsoleCommand;
class RestartCommand extends Command
{
/**
* The console command name.
*
* @var string
*/
protected $name = 'queue:restart';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Restart queue worker daemons after their current job';
/**
* Execute the console command.
*
* @return void
*/
public function fire()
{
$this->laravel['cache']->forever('illuminate:queue:restart', time());
$this->info('Broadcasting queue restart signal.');
}
}