Beispiel #1
0
 /**
  * Magic __get method
  *
  * @param string $name
  * @return mixed
  */
 public function __get($name)
 {
     $parent = parent::__get($name);
     return $parent !== NULL ? $parent : (isset($this->current->{$name}) ? $this->current->{$name} : NULL);
 }