Example #1
0
 public function testParsePHP()
 {
     file_put_contents('/tmp/test.php', '<?php return array("test" => "abc"); ?>');
     $config = Config::from('/tmp/test.php');
     $this->assertEquals(array('test' => 'abc'), $config);
 }