| Total Complexity | 3 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | abstract class AbstractFixtures extends Fixture |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var ContainerInterface |
||
| 16 | */ |
||
| 17 | protected $container; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $fixturesDir; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param ContainerInterface $container |
||
| 26 | */ |
||
| 27 | public function __construct(ContainerInterface $container) |
||
| 28 | { |
||
| 29 | $this->container = $container; |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | protected function getFixturesDir() |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return PurgerLoader |
||
| 42 | */ |
||
| 43 | protected function getLoader() |
||
| 46 | } |
||
| 47 | } |
||
| 48 |