D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Queue
/
Console
/
Filename :
RestartCommand.php
back
Copy
<?php namespace Illuminate\Queue\Console; use Carbon\Carbon; use Illuminate\Console\Command; 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', Carbon::now()->getTimestamp()); $this->info('Broadcasting queue restart signal.'); } }