getParam() public method

Returns a specific param.
public getParam ( string $key ) : mixed
$key string Key to return
return mixed Key value
コード例 #1
0
 /**
  * @group unit
  * @expectedException \Elastica\Exception\InvalidException
  */
 public function testGetParamInvalid()
 {
     $param = new Param();
     $param->getParam('notest');
 }