You are here

public function Response::getStatus in Zircon Profile 8.0

Same name in this branch
  1. 8.0 vendor/symfony/browser-kit/Response.php \Symfony\Component\BrowserKit\Response::getStatus()
  2. 8.0 vendor/jcalderonzumba/gastonjs/src/NetworkTraffic/Response.php \Zumba\GastonJS\NetworkTraffic\Response::getStatus()
Same name and namespace in other branches
  1. 8 vendor/jcalderonzumba/gastonjs/src/NetworkTraffic/Response.php \Zumba\GastonJS\NetworkTraffic\Response::getStatus()

Gets the response status code

Return value

int

File

vendor/jcalderonzumba/gastonjs/src/NetworkTraffic/Response.php, line 31

Class

Response
Class Response @package Zumba\GastonJS\NetworkTraffic

Namespace

Zumba\GastonJS\NetworkTraffic

Code

public function getStatus() {
  return intval($this->data['status']);
}