| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 103 | public static function findSomethingLikeThis( |
||
| 104 | SchemaReader $useThis, |
||
| 105 | Schema $schema, |
||
| 106 | DOMElement $node, |
||
| 107 | DOMElement $childNode, |
||
| 108 | AttributeContainer $addToThis |
||
| 109 | ) { |
||
| 110 | /** |
||
| 111 | * @var AttributeItem $attribute |
||
| 112 | */ |
||
| 113 | $attribute = $useThis->findSomething('findAttributeGroup', $schema, $node, $childNode->getAttribute("ref")); |
||
| 114 | $addToThis->addAttribute($attribute); |
||
| 115 | } |
||
| 117 |