function TrustedRedirectResponse::__construct

File

core/lib/Drupal/Core/Routing/TrustedRedirectResponse.php, line 24

Class

TrustedRedirectResponse
Provides a redirect response which contains trusted URLs.

Namespace

Drupal\Core\Routing

Code

public function __construct($url, $status = 302, $headers = []) {
  $this->trustedUrls[$url] = TRUE;
  parent::__construct($url, $status, $headers);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.