Same name and namespace in other branches
  1. 10 core/lib/Drupal.php \Drupal::requestStack()
  2. 9 core/lib/Drupal.php \Drupal::requestStack()

Retrieves the request stack.

Return value

\Symfony\Component\HttpFoundation\RequestStack The request stack

10 calls to Drupal::requestStack()
DrupalTest::testRequestStack in core/tests/Drupal/Tests/Core/DrupalTest.php
Tests the testRequestStack() method.
MenuLinkContentCacheabilityBubblingTest::testOutboundPathAndRouteProcessing in core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentCacheabilityBubblingTest.php
Tests bubbleable metadata of menu links' outbound route/path processing.
RouteNoneTest::testProcessOutbound in core/tests/Drupal/KernelTests/Core/RouteProcessor/RouteNoneTest.php
Tests the output process.
RouteProcessorCurrentIntegrationTest::testProcessOutbound in core/tests/Drupal/KernelTests/Core/RouteProcessor/RouteProcessorCurrentIntegrationTest.php
Tests the output process.
StyleSerializerTest::addRequestWithFormat in core/modules/rest/tests/src/Functional/Views/StyleSerializerTest.php
Sets up a request on the request stack with a specified format.

... See full list

File

core/lib/Drupal.php, line 237
Contains \Drupal.

Class

Drupal
Static Service Container wrapper.

Code

public static function requestStack() {
  return static::getContainer()
    ->get('request_stack');
}