Skip to content

Commit fb62afc

Browse files
derrabusnicolas-grekas
authored andcommitted
Add missing return types to interfaces
1 parent a55402b commit fb62afc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Fixtures/ContainerAwareFixture.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818

1919
class ContainerAwareFixture implements FixtureInterface, ContainerAwareInterface
2020
{
21-
public $container;
21+
public ?ContainerInterface $container = null;
2222

23-
public function setContainer(?ContainerInterface $container)
23+
public function setContainer(?ContainerInterface $container): void
2424
{
2525
$this->container = $container;
2626
}
2727

28-
public function load(ObjectManager $manager)
28+
public function load(ObjectManager $manager): void
2929
{
3030
}
3131
}

0 commit comments

Comments
 (0)