public function RequestStackCacheContextBase::__construct in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Cache/Context/RequestStackCacheContextBase.php \Drupal\Core\Cache\Context\RequestStackCacheContextBase::__construct()
- 9 core/lib/Drupal/Core/Cache/Context/RequestStackCacheContextBase.php \Drupal\Core\Cache\Context\RequestStackCacheContextBase::__construct()
Constructs a new RequestStackCacheContextBase class.
Parameters
\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack.
File
- core/
lib/ Drupal/ Core/ Cache/ Context/ RequestStackCacheContextBase.php, line 29
Class
- RequestStackCacheContextBase
- Defines a base class for cache contexts depending only on the request stack.
Namespace
Drupal\Core\Cache\ContextCode
public function __construct(RequestStack $request_stack) {
$this->requestStack = $request_stack;
}