Neos\Flow\Security\RequestPattern\Uri::setPattern PHP Метод

setPattern() публичный Метод

Note: the pattern is a full-on regular expression pattern. The only thing that is touched by the code: forward slashes are escaped before the pattern is used.
Устаревший: since 3.3 this is not used - use options instead (@see __construct())
public setPattern ( string $uriPattern ) : void
$uriPattern string The URI pattern
Результат void
    public function setPattern($uriPattern)
    {
        $this->options['uriPattern'] = $uriPattern;
    }