Skip to content

Commit fb7e50c

Browse files
committed
cs fix
1 parent 9cc3cd9 commit fb7e50c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/Finder.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,12 @@ public static function last(
125125
* @param callable(mixed $datum, int|string|null $key=): bool $filter
126126
* @return mixed[]
127127
*/
128-
public static function rows(iterable $data, callable $filter, bool $preserveKey = false, int $limit = PHP_INT_MAX): array
129-
{
128+
public static function rows(
129+
iterable $data,
130+
callable $filter,
131+
bool $preserveKey = false,
132+
int $limit = PHP_INT_MAX
133+
): array {
130134
$rows = [];
131135
$newKey = 0;
132136
$total = 0;

0 commit comments

Comments
 (0)