We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a2a487 commit 48286bbCopy full SHA for 48286bb
composer.json
@@ -32,7 +32,7 @@
32
"cakephp/debug_kit": "^5.0.1",
33
"composer/semver": "^3.0",
34
"fig-r/psr2r-sniffer": "dev-master",
35
- "phpunit/phpunit": "^11.5 || ^12.1"
+ "phpunit/phpunit": "^11.5 || ^12.1 || ^13.0"
36
},
37
"minimum-stability": "stable",
38
"prefer-stable": true,
tests/TestCase/Controller/Component/AuthenticationComponentTest.php
@@ -184,7 +184,7 @@ protected function getControllerMock(ServerRequest $request): Controller {
184
->onlyMethods(['isAction'])
185
->getMock();
186
187
- $controller->expects($this->any())->method('isAction')->willReturn(true);
+ $controller->method('isAction')->willReturn(true);
188
189
return $controller;
190
}
0 commit comments