ReverseProxyMiddleware::handle

public ReverseProxyMiddleware::handle(Request $request, $type = self::MASTER_REQUEST, $catch = TRUE)

Handles a Request to convert it to a Response.

When $catch is true, the implementation must catch all exceptions and do its best to convert them to a Response instance.

Parameters

Request $request A Request instance:

int $type The type of the request: (one of HttpKernelInterface::MASTER_REQUEST or HttpKernelInterface::SUB_REQUEST)

bool $catch Whether to catch exceptions or not:

Return value

Response A Response instance

Throws

\Exception When an Exception occurs during processing

Overrides HttpKernelInterface::handle

File

core/lib/Drupal/Core/StackMiddleware/ReverseProxyMiddleware.php, line 44

Class

ReverseProxyMiddleware
Provides support for reverse proxies.

Namespace

Drupal\Core\StackMiddleware

Code

public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = TRUE) {
  // Initialize proxy settings.
  static::setSettingsOnRequest($request, $this->settings);
  return $this->httpKernel->handle($request, $type, $catch);
}
doc_Drupal
2016-10-29 09:38:24
Comments
Leave a Comment

Please login to continue.