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