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.
Example #1
0
 /**
  * @inheritdoc
  */
 public function getArgument($key)
 {
     return $this->delegate->getArgument($key);
 }
Example #2
0
 /**
  * @param $key
  *
  * @return bool|int|string
  */
 public function getArgument($key)
 {
     return $this->rawExchange->getArgument($key);
 }
Example #3
0
 /**
  * @inheritdoc
  */
 public function getArgument(string $key)
 {
     return $this->exchange->getArgument($key);
 }