Skip to content

Commit fb122c1

Browse files
authored
Merge pull request #8283 from kenjis/update-cs
style: composer cs-fix
2 parents 0c9b3ff + 67335ec commit fb122c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

system/Debug/BaseExceptionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ protected function render(Throwable $exception, int $statusCode, $viewFile = nul
239239
exit(1);
240240
}
241241

242-
echo(function () use ($exception, $statusCode, $viewFile): string {
242+
echo (function () use ($exception, $statusCode, $viewFile): string {
243243
$vars = $this->collectVars($exception, $statusCode);
244244
extract($vars, EXTR_SKIP);
245245

system/Debug/Exceptions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ protected function render(Throwable $exception, int $statusCode)
316316
exit(1);
317317
}
318318

319-
echo(function () use ($exception, $statusCode, $viewFile): string {
319+
echo (function () use ($exception, $statusCode, $viewFile): string {
320320
$vars = $this->collectVars($exception, $statusCode);
321321
extract($vars, EXTR_SKIP);
322322

0 commit comments

Comments
 (0)