MModStartinit
1e1f174c创建于 2022年5月28日历史提交
<?php

namespace Illuminate\Queue\Console;

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', time());

        $this->info('Broadcasting queue restart signal.');
    }
}