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

Sets the Route Part value to the Route Part name and returns TRUE if successful.
public resolve ( array &$routeValues ) : boolean
$routeValues array not used but needed to implement \Neos\Flow\Mvc\Routing\AbstractRoutePart
Результат boolean
 /**
  * @test
  */
 public function staticRoutePartDoesNotAlterCaseIfLowerCaseIsFalse()
 {
     $routePart = new Mvc\Routing\StaticRoutePart();
     $routePart->setName('SomeName');
     $routePart->setLowerCase(false);
     $routeValues = [];
     $routePart->resolve($routeValues);
     $this->assertEquals('SomeName', $routePart->getValue(), 'By default Static Route Part should not alter the case of name');
 }