File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/Framework/MockObject/Runtime/Builder Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ All notable changes of the PHPUnit 11.5 release series are documented in this fi
7
7
### Fixed
8
8
9
9
* [ #6104 ] ( https://github.com/sebastianbergmann/phpunit/issues/6104 ) : Test with dependencies and data provider fails
10
+ * [ #6163 ] ( https://github.com/sebastianbergmann/phpunit/issues/6163 ) : ` @no-named-arguments ` leads to static analysis errors for variadic arguments
10
11
11
12
## [ 11.5.25] - 2025-06-27
12
13
Original file line number Diff line number Diff line change 10
10
namespace PHPUnit \Framework \MockObject \Builder ;
11
11
12
12
/**
13
- * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14
- *
15
13
* @internal This class is not covered by the backward compatibility promise for PHPUnit
16
14
*/
17
15
interface ParametersMatch extends Stub
@@ -46,6 +44,8 @@ public function with(mixed ...$arguments): self;
46
44
* // match any number of parameters
47
45
* $b->withAnyParameters();
48
46
* </code>
47
+ *
48
+ * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
49
49
*/
50
50
public function withAnyParameters (): self ;
51
51
}
You can’t perform that action at this time.
0 commit comments