Skip to content

Commit

Permalink
style: composer cs-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Dec 3, 2023
1 parent 0c9b3ff commit 67335ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion system/Debug/BaseExceptionHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ protected function render(Throwable $exception, int $statusCode, $viewFile = nul
exit(1);
}

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

Expand Down
2 changes: 1 addition & 1 deletion system/Debug/Exceptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ protected function render(Throwable $exception, int $statusCode)
exit(1);
}

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

Expand Down

0 comments on commit 67335ec

Please sign in to comment.