| Total Complexity | 3 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class DataLoader implements DataLoaderInterface |
||
| 20 | { |
||
| 21 | use IsAServiceTrait; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var FixtureBuilderInterface |
||
| 25 | */ |
||
| 26 | private $builder; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var GeneratorInterface |
||
| 30 | */ |
||
| 31 | private $generator; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var null|FixtureSet |
||
| 35 | */ |
||
| 36 | private $lastFixtureSet = null; |
||
| 37 | |||
| 38 | public function __construct(FixtureBuilderInterface $fixtureBuilder, GeneratorInterface $generator) |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @inheritdoc |
||
| 46 | */ |
||
| 47 | public function loadData(array $data, array $parameters = array(), array $objects = array()) : ObjectSet |
||
| 51 | } |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @internal |
||
| 55 | */ |
||
| 56 | public function getLastFixtureSet() |
||
| 59 | } |
||
| 60 | } |