Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Sep 10, 2024
1 parent 3f29f28 commit 8ecbf0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Events/Events.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public static function initialize()
$files = service('locator')->search('Config/Events.php');
}

$files = array_filter(array_map(static function (string $file): string|false {
$files = array_filter(array_map(static function (string $file): false|string {
if (is_file($file)) {
return realpath($file) ?: $file;
}
Expand Down

0 comments on commit 8ecbf0d

Please sign in to comment.