Skip to content

Commit

Permalink
style: add space after !
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Sep 23, 2023
1 parent 770bc20 commit 8927507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Views/errors/html/error_exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<?php
$params = null;
// Reflection by name is not available for closure function
if (!str_ends_with($row['function'], '}')) {
if (! str_ends_with($row['function'], '}')) {
$mirror = isset($row['class']) ? new ReflectionMethod($row['class'], $row['function']) : new ReflectionFunction($row['function']);
$params = $mirror->getParameters();
}
Expand Down

0 comments on commit 8927507

Please sign in to comment.