Наследование: extends Core, implements Timber\CoreInterface
Пример #1
0
 /**
  * Order of method calls:
  *
  * 1. getMethodName($args)
  * 2. methodName($args)
  * 3. propertyName
  * 4. fall back to Timber's core implementation
  *
  * @param string $propertyName
  * @param array $args
  * @return mixed
  */
 public function __call($propertyName, $args = [])
 {
     if (method_exists($this, 'get' . $propertyName)) {
         return call_user_func_array([$this, 'get' . $propertyName], $args);
     } else {
         if (method_exists($this, $propertyName)) {
             return call_user_func_array([$this, $propertyName], $args);
         } else {
             if (property_exists($this, $propertyName)) {
                 return $this->{$propertyName};
             }
         }
     }
     return parent::__call($propertyName, $args);
 }