Skip to content

Commit 77b2f87

Browse files
committed
Fix typing for FunctionalTestData->withRequestParameter
1 parent 8cb36fe commit 77b2f87

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.2.4
2+
3+
* Fix typing for `FunctionalTestData->withRequestParameter()`
4+
15
## v1.2.3
26

37
* Add `FunctionalTestData->withFile()`

src/FunctionalTestData.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public function withServerParameters(string $name, string $value): self
117117
return $new;
118118
}
119119

120-
public function withRequestParameter(string $name, string $value): self
120+
public function withRequestParameter(string $name, mixed $value): self
121121
{
122122
$new = clone $this;
123123
if (isset($new->withRequestParameters[$name])) {

0 commit comments

Comments
 (0)