public function testWhetherItIsPossibleToRetrieveAllPropertyAndSectionNames()
 {
     $config = new ConfigObject(array('a' => 'b', 'c' => array('d' => 'e')));
     $this->assertEquals(array('a', 'c'), $config->keys(), 'ConfigObjects do not list property and section names correctly');
 }
Exemple #2
0
 /**
  * Return this config's section names
  *
  * @return  array
  */
 public function keys()
 {
     return $this->config->keys();
 }