Skip to content

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Feb 27, 2023
1 parent eba12e4 commit 6ff9914
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Finder.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public static function last(
*/
public static function rows(iterable $data, callable $filter, bool $preserveKey = false): array
{
$rows = [];
$rows = [];
$newKey = 0;

foreach ($data as $key => $datum) {
Expand Down
2 changes: 1 addition & 1 deletion tests/FinderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ public static function rowsDataProviderPreserveKey(): array
[
1 => 7,
2 => 8,
3 => 9
3 => 9,
],
],
[
Expand Down

0 comments on commit 6ff9914

Please sign in to comment.