You are here

public function RouterRebuildConfirmForm::__construct in Devel 8.3

Same name and namespace in other branches
  1. 8 src/Form/RouterRebuildConfirmForm.php \Drupal\devel\Form\RouterRebuildConfirmForm::__construct()
  2. 8.2 src/Form/RouterRebuildConfirmForm.php \Drupal\devel\Form\RouterRebuildConfirmForm::__construct()
  3. 4.x src/Form/RouterRebuildConfirmForm.php \Drupal\devel\Form\RouterRebuildConfirmForm::__construct()

Constructs a new RouterRebuildConfirmForm object.

Parameters

\Drupal\Core\Routing\RouteBuilderInterface $route_builder: The route builder service.

File

src/Form/RouterRebuildConfirmForm.php, line 29

Class

RouterRebuildConfirmForm
Provides confirmation form for rebuilding the routes.

Namespace

Drupal\devel\Form

Code

public function __construct(RouteBuilderInterface $route_builder) {
  $this->routeBuilder = $route_builder;
}