Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 9 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
18 | View Code Duplication | public function getContexts() |
|
19 | { |
||
20 | $contexts = [Config::CONTEXT_DEFAULT]; |
||
21 | $configuredContexts = $this->toXml()->xpath('//s:context'); |
||
22 | foreach ($configuredContexts as $context) { |
||
23 | $contexts[] = (string)$context['id']; |
||
24 | } |
||
25 | return $contexts; |
||
26 | } |
||
27 | } |
||
28 |