Skip to content

Commit

Permalink
Fix CS (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
derrabus authored Apr 3, 2024
1 parent 420480f commit ec877e9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/ArrayCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ class ArrayCollection implements Collection, Selectable, Stringable
/**
* Initializes a new ArrayCollection.
*
* @param array $elements
* @psalm-param array<TKey,T> $elements
*/
public function __construct(array $elements = [])
Expand Down
2 changes: 1 addition & 1 deletion tests/CollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function testMatchingCallable(): void

$col = $this->collection->matching(
new Criteria(
new Value(static fn (stdClass $test): bool => $test->foo === 1)
new Value(static fn (stdClass $test): bool => $test->foo === 1),
),
);

Expand Down

0 comments on commit ec877e9

Please sign in to comment.