You are here

public function CurrentRouteMatch::resetRouteMatch in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Routing/CurrentRouteMatch.php \Drupal\Core\Routing\CurrentRouteMatch::resetRouteMatch()

Resets the route match static cache.

The route match should only be statically cached once routing is finished. Any code that uses a route match during routing may be incorrectly assumed to be acting after routing has completed. This method gives that code the ability to fix the static cache.

Overrides ResettableStackedRouteMatchInterface::resetRouteMatch

File

core/lib/Drupal/Core/Routing/CurrentRouteMatch.php, line 119

Class

CurrentRouteMatch
Default object for current_route_match service.

Namespace

Drupal\Core\Routing

Code

public function resetRouteMatch() {
  $this->routeMatches = new \SplObjectStorage();
}