Skip to content

Commit 21d3ba9

Browse files
committed
Add undectected missing trailing commas
1 parent cb9c326 commit 21d3ba9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Collection/CollectionFunctionalTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -705,15 +705,15 @@ public function collectionReadMethodClosures(): array
705705
{
706706
return array_filter(
707707
$this->collectionMethodClosures(),
708-
fn ($rw) => str_contains($rw[1], 'r')
708+
fn ($rw) => str_contains($rw[1], 'r'),
709709
);
710710
}
711711

712712
public function collectionWriteMethodClosures(): array
713713
{
714714
return array_filter(
715715
$this->collectionMethodClosures(),
716-
fn ($rw) => str_contains($rw[1], 'w')
716+
fn ($rw) => str_contains($rw[1], 'w'),
717717
);
718718
}
719719

0 commit comments

Comments
 (0)