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