Neos\Flow\Mvc\Routing\DynamicRoutePart::matchValue PHP Метод

matchValue() защищенный Метод

In the case of default Dynamic Route Parts a value matches when it's not empty. This method can be overridden by custom RoutePartHandlers to implement custom matching mechanisms.
protected matchValue ( string $value ) : boolean
$value string value to match
Результат boolean TRUE if value could be matched successfully, otherwise FALSE.
    protected function matchValue($value)
    {
        if ($value === null || $value === '') {
            return false;
        }
        $this->value = rawurldecode($value);
        return true;
    }