public function ExceptionDataCollector::hasException 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::hasException()
Checks if the exception is not null.
Return value
bool true if the exception is not null, false otherwise
File
- vendor/
symfony/ http-kernel/ DataCollector/ ExceptionDataCollector.php, line 42
Class
- ExceptionDataCollector
- ExceptionDataCollector.
Namespace
Symfony\Component\HttpKernel\DataCollectorCode
public function hasException() {
return isset($this->data['exception']);
}