You are here

public function Response::getStatusCode in Lockr 7.3

Gets the response status code.

The status code is a 3-digit integer result code of the server's attempt to understand and satisfy the request.

Return value

int Status code.

Overrides ResponseInterface::getStatusCode

File

vendor/guzzlehttp/psr7/src/Response.php, line 116

Class

Response
PSR-7 response implementation.

Namespace

GuzzleHttp\Psr7

Code

public function getStatusCode() {
  return $this->statusCode;
}