Skip to content

Commit

Permalink
autofix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Sep 29, 2023
1 parent 1101f3a commit 9b4cf93
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions tests/static-analysis/countIn.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
use loophp\collection\Collection;
use loophp\collection\Contract\Collection as CollectionInterface;

function count_check(int $count): void
{
}
function count_check(int $count): void {}

$counter = 0;

Expand All @@ -22,8 +20,6 @@ function count_check(int $count): void
*
* @phpstan-param CollectionInterface<int, int> $collection
*/
function checkListInt(CollectionInterface $collection): void
{
}
function checkListInt(CollectionInterface $collection): void {}

checkListInt(Collection::fromIterable([1, 2, 3])->countIn($counter));

0 comments on commit 9b4cf93

Please sign in to comment.