8000 minor #33886 [FrameworkBundle] Added missing return type (derrabus) · symfony/symfony@7df0b6c · GitHub
[go: up one dir, main page]

Skip to content

Commit 7df0b6c

Browse files
minor #33886 [FrameworkBundle] Added missing return type (derrabus)
This PR was merged into the 5.0-dev branch. Discussion ---------- [FrameworkBundle] Added missing return type | Q | A | ------------- | --- | Branch? | master | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | N/A | License | MIT | Doc PR | N/A Commits ------- 9813031 Added missing return type.
2 parents 4e5c6ba + 9813031 commit 7df0b6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Tests/Controller/TestAbstractController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function __call(string $method, array $arguments)
2828
return $this->$method(...$arguments);
2929
}
3030

31-
public function setContainer(ContainerInterface $container)
31+
public function setContainer(ContainerInterface $container): ?ContainerInterface
3232
{
3333
if (!$this->throwOnUnexpectedService) {
3434
return parent::setContainer($container);

0 commit comments

Comments
 (0)
0