Skip to content

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Mar 30, 2024
1 parent 9cc3cd9 commit fb7e50c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Finder.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,12 @@ public static function last(
* @param callable(mixed $datum, int|string|null $key=): bool $filter
* @return mixed[]
*/
public static function rows(iterable $data, callable $filter, bool $preserveKey = false, int $limit = PHP_INT_MAX): array
{
public static function rows(
iterable $data,
callable $filter,
bool $preserveKey = false,
int $limit = PHP_INT_MAX
): array {
$rows = [];
$newKey = 0;
$total = 0;
Expand Down

0 comments on commit fb7e50c

Please sign in to comment.