| Name | Size | Mode | Actions |
|---|---|---|---|
| error.html.php | 633 | 0644 | editdlrm |
| exception.html.php | 4542 | 0644 | editdlrm |
| exception_full.html.php | 1841 | 0644 | editdlrm |
| logs.html.php | 2139 | 0644 | editdlrm |
| trace.html.php | 2319 | 0644 | editdlrm |
| traces.html.php | 2441 | 0644 | editdlrm |
| traces_text.html.php | 2064 | 0644 | editdlrm |
/home/techb158/immovalet.com/vendor/symfony/error-handler/Resources/views/traces_text.html.php (2064B)
|
1) { ?>
[= $numExceptions - $index + 1; ?>/= $numExceptions; ?>]
= ($parts = explode('\\', $exception['class'])) ? end($parts) : ''; ?>
= $this->include('assets/images/icon-minus-square-o.svg'); ?>
= $this->include('assets/images/icon-plus-square-o.svg'); ?>
|
|---|
escape($exception['class']).":\n";
if ($exception['message']) {
echo $this->escape($exception['message'])."\n";
}
foreach ($exception['trace'] as $trace) {
echo "\n ";
if ($trace['function']) {
echo $this->escape('at '.$trace['class'].$trace['type'].$trace['function']).'('.(isset($trace['args']) ? $this->formatArgsAsText($trace['args']) : '').')';
}
if ($trace['file'] && $trace['line']) {
echo($trace['function'] ? "\n (" : 'at ').strtr(strip_tags($this->formatFile($trace['file'], $trace['line'])), [' at line '.$trace['line'] => '']).':'.$trace['line'].($trace['function'] ? ')' : '');
}
}
?>
|