getConfig() 공개 메소드

Read the config
public getConfig ( string $dir ) : array
$dir string filepath to the package directory
리턴 array the full config
예제 #1
0
 public function testLoad()
 {
     $helper = new Helper();
     $cfg = $helper->getConfig(dirname(__DIR__) . '/Fixtures');
     $this->assertArrayHasKey('SomeClass::someMethod', $cfg['graph']['calling']);
 }