Neos\Flow\Security\Authentication\EntryPoint\WebRedirect::extractRouteValue PHP Метод

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

If $key does not exist, NULL is returned.
protected extractRouteValue ( array &$routeValues, string $key ) : mixed
$routeValues array
$key string
Результат mixed the specified route value or NULL if it is not set
    protected function extractRouteValue(array &$routeValues, $key)
    {
        if (!isset($routeValues[$key])) {
            return null;
        }
        $routeValue = $routeValues[$key];
        unset($routeValues[$key]);
        return $routeValue;
    }