We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a55402b commit fb62afcCopy full SHA for fb62afc
Tests/Fixtures/ContainerAwareFixture.php
@@ -18,14 +18,14 @@
18
19
class ContainerAwareFixture implements FixtureInterface, ContainerAwareInterface
20
{
21
- public $container;
+ public ?ContainerInterface $container = null;
22
23
- public function setContainer(?ContainerInterface $container)
+ public function setContainer(?ContainerInterface $container): void
24
25
$this->container = $container;
26
}
27
28
- public function load(ObjectManager $manager)
+ public function load(ObjectManager $manager): void
29
30
31
0 commit comments