FluidXml\ReservedCallTrait::__call PHP Method

__call() public method

public __call ( $method, $arguments )
    public function __call($method, $arguments)
    {
        $m = "{$method}_";
        if (\method_exists($this, $m)) {
            return $this->{$m}(...$arguments);
        }
        throw new \Exception("Method '{$method}' not found.");
    }
ReservedCallTrait