Skip to content

Commit

Permalink
Merge pull request #8283 from kenjis/update-cs
Browse files Browse the repository at this point in the history
style: composer cs-fix
  • Loading branch information
kenjis authored Dec 3, 2023
2 parents 0c9b3ff + 67335ec commit fb122c1
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 fb122c1

Please sign in to comment.