Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | protected function configureSchema(\DOMElement $element) |
||
11 | { |
||
12 | $schema = realpath(__DIR__ . '/../../../assets/context.xsd'); |
||
13 | $element->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns', 'http://www.magiumlib.com/ConfigurationContext'); |
||
14 | $element->setAttributeNS('http://www.w3.org/2001/XMLSchema-instance', 'xsi:schemaLocation', 'http://www.magiumlib.com/ConfigurationContext ' . $schema); |
||
15 | return $schema; |
||
16 | } |
||
17 | |||
28 |