You are here

public function EnforcedResponse::getResponse in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Form/EnforcedResponse.php \Drupal\Core\Form\EnforcedResponse::getResponse()

Returns the wrapped response.

Return value

\Symfony\Component\HttpFoundation\Response The wrapped response.

File

core/lib/Drupal/Core/Form/EnforcedResponse.php, line 78
Contains \Drupal\Core\Form\EnforcedResponse.

Class

EnforcedResponse
A wrapper containing a response which is to be enforced upon delivery.

Namespace

Drupal\Core\Form

Code

public function getResponse() {
  return $this->response;
}