Skip to content

Commit

Permalink
cs: autofix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Nov 28, 2022
1 parent eb78132 commit 4dc36fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Utils/CallbacksArrayReducer.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ public static function or(): Closure
*/
static fn (array $callbacks): Closure => static fn (mixed ...$parameters): bool => array_reduce(
$callbacks,
/**
* @param bool $carry
* @param callable(mixed...): bool $callable
*/
static fn (bool $carry, callable $callable): bool => $carry || $callable(...$parameters),
/**
* @param bool $carry
* @param callable(mixed...): bool $callable
*/
static fn (bool $carry, callable $callable): bool => $carry || $callable(...$parameters),
false
);
}
Expand Down

0 comments on commit 4dc36fe

Please sign in to comment.