Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | public function load($identifier) |
||
45 | { |
||
46 | $rawConfiguration = $this->decoratedLoader->load($identifier); |
||
47 | |||
48 | $configurations = [$rawConfiguration]; |
||
49 | if (isset($rawConfiguration['extra']['sylius-theme'])) { |
||
50 | $configurations[] = $rawConfiguration['extra']['sylius-theme']; |
||
51 | } |
||
52 | |||
53 | return $this->configurationProcessor->process($configurations); |
||
54 | } |
||
55 | } |
||
56 |