public function AtToolLazyBuilders::__construct in AT Tool 2.0 1.0.x
Constructs a new LazyBuilders object.
Parameters
\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack.
\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match.
\Drupal\Core\Controller\TitleResolverInterface $title_resolver: The title resolver.
File
- src/
AtToolLazyBuilders.php, line 46
Class
- AtToolLazyBuilders
- Lazy builders for the at_tool.
Namespace
Drupal\at_toolCode
public function __construct(RequestStack $request_stack, RouteMatchInterface $route_match, TitleResolverInterface $title_resolver) {
$this->requestStack = $request_stack;
$this->routeMatch = $route_match;
$this->titleResolver = $title_resolver;
}