Neos\Neos\Routing\BackendModuleRoutePartHandler::resolveValue PHP Метод

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

Iterate through the configured modules, find the matching module and set the route path accordingly
protected resolveValue ( array $value ) : boolean
$value array (contains action, controller and package of the module controller)
Результат boolean
    protected function resolveValue($value)
    {
        if (is_array($value)) {
            $this->value = $value['module'];
        } else {
            $this->value = $value;
        }
        return true;
    }