getConfigValue() 공개 메소드

Get value from connection config
public getConfigValue ( $key ) : mixed
$key
리턴 mixed
예제 #1
0
 /**
  * @dataProvider getCluster
  *
  * @param $nodes array
  */
 public function testConfig($nodes)
 {
     $riak = new Riak($nodes, ['max_connect_attempts' => 5]);
     $this->assertEquals(5, $riak->getConfigValue('max_connect_attempts'));
 }