Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
104 | 135 | public static function loadGroupRef(Group $referenced, DOMElement $node) |
|
105 | { |
||
106 | 135 | $ref = new GroupRef($referenced); |
|
107 | 135 | $ref->setDoc(SchemaReader::getDocumentation($node)); |
|
108 | |||
109 | 135 | SchemaReader::maybeSetMax($ref, $node); |
|
110 | 135 | SchemaReader::maybeSetMin($ref, $node); |
|
111 | |||
112 | 135 | return $ref; |
|
113 | } |
||
115 |