Skip to content

Commit

Permalink
Remove named param
Browse files Browse the repository at this point in the history
  • Loading branch information
indexxd committed Apr 27, 2023
1 parent a3e0885 commit 7584b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/RouteDescriber/FosRestDescriberTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function testQueryParamWithChoiceConstraintAsArray()
$choices = ['foo', 'bar'];

$queryParam = new QueryParam();
$queryParam->requirements = new Choice($choices, multiple: true);
$queryParam->requirements = new Choice($choices, null, null, true);

$readerMock = $this->createMock(Reader::class);
$readerMock->method('getMethodAnnotations')->willReturn([
Expand Down

0 comments on commit 7584b9a

Please sign in to comment.