Pagekit\Database\Utility::__call PHP Méthode

__call() public méthode

Proxy method call to database schema manager.
public __call ( string $method, array $args ) : mixed
$method string
$args array
Résultat mixed
    public function __call($method, $args)
    {
        if (!method_exists($this->manager, $method)) {
            throw new \BadMethodCallException(sprintf('Undefined method call "%s::%s"', get_class($this->manager), $method));
        }
        return call_user_func_array([$this->manager, $method], $args);
    }