Skip to content

Commit 6ff9914

Browse files
committed
cs fix
1 parent eba12e4 commit 6ff9914

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Finder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public static function last(
124124
*/
125125
public static function rows(iterable $data, callable $filter, bool $preserveKey = false): array
126126
{
127-
$rows = [];
127+
$rows = [];
128128
$newKey = 0;
129129

130130
foreach ($data as $key => $datum) {

tests/FinderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ public static function rowsDataProviderPreserveKey(): array
297297
[
298298
1 => 7,
299299
2 => 8,
300-
3 => 9
300+
3 => 9,
301301
],
302302
],
303303
[

0 commit comments

Comments
 (0)