Skip to content

Commit 9c04306

Browse files
Fix tests
1 parent 1930a7b commit 9c04306

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Controller/ControllerResolverTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,14 +170,14 @@ protected function createMockContainer()
170170

171171
class ContainerAwareController implements ContainerAwareInterface
172172
{
173-
private ?Container $container = null;
173+
private ?ContainerInterface $container = null;
174174

175175
public function setContainer(?ContainerInterface $container): void
176176
{
177177
$this->container = $container;
178178
}
179179

180-
public function getContainer(): ?Container
180+
public function getContainer(): ?ContainerInterface
181181
{
182182
return $this->container;
183183
}

0 commit comments

Comments
 (0)