예제 #1
0
 public function testTransformObjectInArray()
 {
     $arr = array(6, 3, 3);
     $config = new CoreExt_Config($arr);
     $this->assertEquals($arr, $config->toArray());
 }
예제 #2
0
 /**
  * Carrega as configuração da seção desejada.
  * @param  string  $section
  */
 protected function changeSection($section = 'production')
 {
     parent::__construct($this->iniArr[$section]);
 }