You are here

public function CurrentPathStack::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Path/CurrentPathStack.php \Drupal\Core\Path\CurrentPathStack::__construct()

Constructs a new CurrentPathStack instance.

Parameters

\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack.

File

core/lib/Drupal/Core/Path/CurrentPathStack.php, line 37

Class

CurrentPathStack
Represents the current path for the current request.

Namespace

Drupal\Core\Path

Code

public function __construct(RequestStack $request_stack) {
  $this->requestStack = $request_stack;
  $this->paths = new \SplObjectStorage();
}