コード例 #1
0
ファイル: Options.php プロジェクト: brussens/cogear2
 /**
  * Magic __get method
  *
  * @param string $name
  * @return mixed
  */
 public function __get($name)
 {
     if (isset($this->options->{$name})) {
         return $this->options->{$name};
     }
     return isset($this->{$name}) ? $this->{$name} : parent::__get($name);
 }
コード例 #2
0
ファイル: Options.php プロジェクト: romartyn/cogear
 /**
  * Magic __get method
  * 
  * @param string $name
  * @return mixed
  */
 public function __get($name)
 {
     return isset($this->{$name}) ? $this->{$name} : parent::__get($name);
 }