public function RouterRebuildConfirmForm::__construct in Devel 8
Same name and namespace in other branches
- 8.3 src/Form/RouterRebuildConfirmForm.php \Drupal\devel\Form\RouterRebuildConfirmForm::__construct()
- 8.2 src/Form/RouterRebuildConfirmForm.php \Drupal\devel\Form\RouterRebuildConfirmForm::__construct()
- 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\FormCode
public function __construct(RouteBuilderInterface $route_builder) {
$this->routeBuilder = $route_builder;
}