Skip to content

Commit

Permalink
chore: autofix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Jan 18, 2024
1 parent 6ea3c47 commit 353f0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Operation/Reject.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ static function (iterable $iterable) use ($callbacks): Generator {
* @param TKey $key
* @param iterable<TKey, T> $iterable
*/
static fn (mixed $current, mixed $key, mixed $iterable): bool => !(bool)$callback($current, $key, $iterable);
static fn (mixed $current, mixed $key, mixed $iterable): bool => !(bool) $callback($current, $key, $iterable);

yield from new FilterIterableAggregate($iterable, $callback);
};
Expand Down

0 comments on commit 353f0c2

Please sign in to comment.