Beispiel #1
0
 protected function innerGet($key)
 {
     $value = parent::innerGet($key);
     if ($value instanceof Config) {
         $value = Driver::instance($value);
         $this->key = $value;
     }
     return $value;
 }
Beispiel #2
0
 protected function innerGet($key)
 {
     if ('path' == $key) {
         return $this->__data['path'];
     } else {
         return parent::innerGet($key);
     }
 }