castopod/app/Views/errors/cli/error_exception.php
Yassine Doghri ed6e953010 refactor: add php_codesniffer to define castopod's coding style based on psr-1
- add .editorconfig file
- format all files to comply with castopod's coding style
- switch parsedown dependency with commonmark library to better follow commonmark spec for markdown
- add prettier command to format all project files at once

closes #16
2020-10-15 14:41:22 +00:00

24 lines
698 B
PHP

An uncaught Exception was encountered
Type: <?= get_class($exception), "\n" ?>
Message: <?= $message, "\n" ?>
Filename: <?= $exception->getFile(), "\n" ?>
Line Number: <?= $exception->getLine() ?>
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === true): ?>
Backtrace:
<?php foreach ($exception->getTrace() as $error): ?>
<?php if (isset($error['file'])): ?>
<?= trim(
'-' .
$error['line'] .
' - ' .
$error['file'] .
'::' .
$error['function']
) . "\n" ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>