public function ExceptionDataCollector::getTrace 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::getTrace()
Gets the exception trace.
Return value
array The exception trace
File
- vendor/
symfony/ http-kernel/ DataCollector/ ExceptionDataCollector.php, line 92
Class
- ExceptionDataCollector
- ExceptionDataCollector.
Namespace
Symfony\Component\HttpKernel\DataCollectorCode
public function getTrace() {
return $this->data['exception']
->getTrace();
}