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