8000 Merge branch '6.2' into 6.3 · symfony/symfony@17a88cf · GitHub
[go: up one dir, main page]

Skip to content

Commit 17a88cf

Browse files
Merge branch '6.2' into 6.3
* 6.2: Fix merge
2 parents 4fe1a2f + e95bbe7 commit 17a88cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/HttpKernel/Tests/Controller/TraceableArgumentResolverTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function testStopwatchEventIsStoppedWhenResolverThrows()
2929
$stopwatch->method('start')->willReturn($stopwatchEvent);
3030

3131
$resolver = new class() implements ArgumentResolverInterface {
32-
public function getArguments(Request $request, callable $controller)
32+
public function getArguments(Request $request, callable $controller): array
3333
{
3434
throw new \Exception();
3535
}

src/Symfony/Component/HttpKernel/Tests/Controller/TraceableControllerResolverTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function testStopwatchEventIsStoppedWhenResolverThrows()
2929
$stopwatch->method('start')->willReturn($stopwatchEvent);
3030

3131
$resolver = new class() implements ControllerResolverInterface {
32-
public function getController(Request $request)
32+
public function getController(Request $request): callable|false
3333
{
3434
throw new \Exception();
3535
}

0 commit comments

Comments
 (0)
0