Exemplo n.º 1
0
 /**
  * @param string $prop
  * @return mixed|null
  */
 public function __get($prop)
 {
     $method = "get_" . $prop;
     if (method_exists($this, $method)) {
         return $this->{$method}();
     }
     return parent::__get($prop);
 }