public function ExceptionDataCollector::getStatusCode in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/DataCollector/ExceptionDataCollector.php \Symfony\Component\HttpKernel\DataCollector\ExceptionDataCollector::getStatusCode()
Gets the status code.
Return value
int The status code
File
- vendor/
symfony/ http-kernel/ DataCollector/ ExceptionDataCollector.php, line 82
Class
- ExceptionDataCollector
- ExceptionDataCollector.
Namespace
Symfony\Component\HttpKernel\DataCollectorCode
public function getStatusCode() {
return $this->data['exception']
->getStatusCode();
}