objectManager = $objectManager; $this->instanceName = $instanceName; } /** * {@inheritdoc} */ public function create($queueName, $connectionName) { return $this->objectManager->create( $this->instanceName, [ 'queueName' => $queueName, 'connectionName' => $connectionName ] ); } }