You are here

public function Client::getResponse in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/http-kernel/Client.php \Symfony\Component\HttpKernel\Client::getResponse()
  2. 8 vendor/symfony/browser-kit/Client.php \Symfony\Component\BrowserKit\Client::getResponse()
Same name and namespace in other branches
  1. 8.0 vendor/symfony/browser-kit/Client.php \Symfony\Component\BrowserKit\Client::getResponse()

Returns the current origin response instance.

The origin response is the response instance that is returned by the code that handles requests.

Return value

object|null A response instance

See also

doRequest()

1 call to Client::getResponse()
Client::getResponse in vendor/symfony/http-kernel/Client.php
1 method overrides Client::getResponse()
Client::getResponse in vendor/symfony/http-kernel/Client.php

File

vendor/symfony/browser-kit/Client.php, line 185

Class

Client
Client simulates a browser.

Namespace

Symfony\Component\BrowserKit

Code

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