| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 5 | public function getContexts() |
|
| 19 | { |
||
| 20 | 5 | $contexts = [ConfigurationRepository::CONTEXT_DEFAULT]; |
|
| 21 | 5 | $xml = $this->toXml(); |
|
| 22 | 5 | $xml->registerXPathNamespace('s', 'http://www.magiumlib.com/ConfigurationContext'); |
|
| 23 | 5 | $configuredContexts = $xml->xpath('//s:context'); |
|
| 24 | 5 | foreach ($configuredContexts as $context) { |
|
| 25 | 5 | $contexts[] = (string)$context['id']; |
|
| 26 | } |
||
| 27 | 5 | return $contexts; |
|
| 28 | } |
||
| 29 | } |
||
| 30 |