getArgument() public method

Get the argument associated with the given key.
public getArgument ( string $key ) : string | integer | boolean
$key string The key to look up.
return string | integer | boolean The string or integer value associated with the given key, or FALSE if the key is not set.
コード例 #1
0
ファイル: Exchange.php プロジェクト: treehouselabs/queue
 /**
  * @inheritdoc
  */
 public function getArgument($key)
 {
     return $this->delegate->getArgument($key);
 }
コード例 #2
0
ファイル: Exchange.php プロジェクト: csharpru/yii2-amqp
 /**
  * @param $key
  *
  * @return bool|int|string
  */
 public function getArgument($key)
 {
     return $this->rawExchange->getArgument($key);
 }
コード例 #3
0
ファイル: Exchange.php プロジェクト: prolic/HumusAmqp
 /**
  * @inheritdoc
  */
 public function getArgument(string $key)
 {
     return $this->exchange->getArgument($key);
 }