We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec16ff0 commit 8ff559bCopy full SHA for 8ff559b
Handlers/AbstractHandler.php
@@ -104,7 +104,7 @@ public function shutdownHandler(): void
104
$this->throwException = false;
105
$error = error_get_last();
106
if($error) {
107
- $item = new ExceptionItem($error['type']);
+ $item = new ExceptionItem(new ErrorException);
108
if ($item->isLevelFatal()) {
109
$this->errorHandler(
110
$error['type'],
@@ -113,7 +113,6 @@ public function shutdownHandler(): void
113
$error['line']
114
);
115
}
116
-
117
118
119
main.css
@@ -33,7 +33,7 @@ code {
33
34
35
pre {
36
- width: calc(100vw - 690px);
+ width: calc(100vw - 560px);
37
font-size: 1.4rem;
38
font-family: "Lucida Console", Monaco, monospace;
39
background-color: #F1F1F1;
0 commit comments