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