getConfig() public method

Returns a specific config key or the whole config array if not set.
public getConfig ( string $key = '' ) : array | string
$key string Config key
return array | string Config value
コード例 #1
0
ファイル: LogTest.php プロジェクト: kskod/Elastica
 public function testSetLogConfigEnable()
 {
     $client = new Client(array('log' => true));
     $this->assertTrue($client->getConfig('log'));
 }
コード例 #2
0
 public function testSetLogConfigEnable1()
 {
     $client = new Client();
     $client->setLogger(new Log());
     $this->assertFalse($client->getConfig('log'));
 }