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