* @since 2.0.2 */ class Command extends CliCommand { /** * @var Queue */ public $queue; /** * @inheritdoc */ protected function isWorkerAction($actionID) { return $actionID === 'listen'; } /** * Listens amqp-queue and runs new jobs. * It can be used as daemon process. */ public function actionListen() { $this->queue->listen(); } }