*/ class ReceiptPrinterJob extends BaseObject implements \yii\queue\JobInterface { /** * @var Config */ public $config; /** * @var array */ public $data = []; /** * @param \yii\queue\Queue $queue * @return mixed|void * @throws \yii\base\InvalidConfigException */ public function execute($queue) { Yii::$app->services->extendPrinter->receiptPrinter($this->config, $this->data); } }