Search\Manager::__call PHP Method

__call() public method

Magic method to add filters using custom types.
public __call ( string $method, array $args )
$method string Method name.
$args array Arguments.
    public function __call($method, $args)
    {
        if (!isset($args[1])) {
            $args[1] = [];
        }
        return $this->add($args[0], $method, $args[1]);
    }