ApiGen\Templating\Filters\Filters::loader PHP Method

loader() public method

Calls public method with args if exists and passes args.
public loader ( string $name ) : mixed
$name string
return mixed
    public function loader($name)
    {
        if (method_exists($this, $name)) {
            $args = array_slice(func_get_args(), 1);
            return call_user_func_array([$this, $name], $args);
        }
        return null;
    }