AMQPExchange::getArgument PHP Method

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.
    public function getArgument($key)
    {
    }

Usage Example

Beispiel #1
0
 /**
  * @inheritdoc
  */
 public function getArgument($key)
 {
     return $this->delegate->getArgument($key);
 }
All Usage Examples Of AMQPExchange::getArgument