Granada\Granada::__callStatic PHP Метод

__callStatic() публичный статический Метод

Calls static methods directly on the Orm\Wrapper
public static __callStatic ( $method, $parameters )
    public static function __callStatic($method, $parameters)
    {
        if (function_exists('get_called_class')) {
            $model = self::factory(get_called_class());
            return call_user_func_array(array($model, $method), $parameters);
        }
    }