8000 Fix merge · symfony/symfony@e95bbe7 · GitHub
[go: up one dir, main page]

Skip to content

Commit e95bbe7

Browse files
Fix merge
1 parent 77e9020 commit e95bbe7

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
< 5325 td data-grid-cell-id="diff-9a9592899dcf8e9fc4e45dcd2f9aaa2a5b2a099899523803cb5149d3155b6865-32-32-0" data-selected="false" role="gridcell" style="background-color:var(--diffBlob-additionNum-bgColor, var(--diffBlob-addition-bgColor-num));text-align:center" tabindex="-1" valign="top" class="focusable-grid-cell diff-line-number position-relative left-side">
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