You are here

protected function LocalAwareRedirectResponseTrait::getRequestContext in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Routing/LocalAwareRedirectResponseTrait.php \Drupal\Core\Routing\LocalAwareRedirectResponseTrait::getRequestContext()

Returns the request context.

Return value

\Drupal\Core\Routing\RequestContext The request context.

File

core/lib/Drupal/Core/Routing/LocalAwareRedirectResponseTrait.php, line 39

Class

LocalAwareRedirectResponseTrait
Provides a trait which ensures that a URL is safe to redirect to.

Namespace

Drupal\Core\Routing

Code

protected function getRequestContext() {
  if (!isset($this->requestContext)) {
    $this->requestContext = \Drupal::service('router.request_context');
  }
  return $this->requestContext;
}