예제 #1
0
파일: Set.php 프로젝트: pr-of-it/t4
 protected function innerGet($key)
 {
     $value = parent::innerGet($key);
     if ($value instanceof Config) {
         $value = Driver::instance($value);
         $this->key = $value;
     }
     return $value;
 }
예제 #2
0
파일: Config.php 프로젝트: pr-of-it/t4
 protected function innerGet($key)
 {
     if ('path' == $key) {
         return $this->__data['path'];
     } else {
         return parent::innerGet($key);
     }
 }