예제 #1
0
파일: Config.php 프로젝트: anroots/pgca
 /**
  * {@inheritdoc}
  */
 public function get($path)
 {
     if ($this->config === null) {
         throw new \RuntimeException('Config file not loaded');
     }
     return $this->config->get($path);
 }
예제 #2
0
 /**
  * {@inheritdoc}
  */
 public function get($name)
 {
     return $this->data->get($name);
 }