Illuminate\Queue\Console\WorkCommand::getQueue PHP 메소드

getQueue() 보호된 메소드

Get the queue name for the worker.
protected getQueue ( string $connection ) : string
$connection string
리턴 string
    protected function getQueue($connection)
    {
        return $this->option('queue') ?: $this->laravel['config']->get("queue.connections.{$connection}.queue", 'default');
    }