Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Code Lines | 7 |
Lines | 16 |
Ratio | 100 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
27 | public function load(ObjectManager $manager) |
||
28 | { |
||
29 | $env = $this->getEnvironment(); |
||
30 | |||
31 | if ('test' === $env) { |
||
32 | $this->loadFixtures( |
||
33 | [ |
||
34 | '@SWPFixturesBundle/Resources/fixtures/ORM/'.$env.'/separate_article.yml', |
||
35 | ], |
||
36 | $manager, |
||
37 | [ |
||
38 | 'providers' => [$this], |
||
39 | ] |
||
40 | ); |
||
41 | } |
||
42 | } |
||
43 | |||
52 |