Eloquent\Phony\Facade\AbstractFacade::wildcard PHP Метод

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

Create a new matcher that matches multiple arguments.
public static wildcard ( mixed $value = null, integer $minimumArguments, integer | null $maximumArguments = null ) : WildcardMatcher
$value mixed The value to check for each argument.
$minimumArguments integer The minimum number of arguments.
$maximumArguments integer | null The maximum number of arguments.
Результат Eloquent\Phony\Matcher\WildcardMatcher The newly created wildcard matcher.
    public static function wildcard($value = null, $minimumArguments = 0, $maximumArguments = null)
    {
        return static::driver()->matcherFactory->wildcard($value, $minimumArguments, $maximumArguments);
    }