| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | abstract class AbstractContainerAwareFixture |
||
| 13 | { |
||
| 14 | /** @var ContainerInterface */ |
||
| 15 | private $container; |
||
| 16 | |||
| 17 | /** |
||
| 18 | 2 | * @return ContainerInterface |
|
| 19 | */ |
||
| 20 | 2 | protected function getContainer(): ContainerInterface |
|
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | 2 | * @param ContainerInterface $container |
|
| 27 | */ |
||
| 28 | 2 | public function setContainer(ContainerInterface $container) |
|
| 33 |