@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | /** |
| 49 | 49 | * Get all of the attributes of the provided element. |
| 50 | 50 | * |
| 51 | - * @param type $element |
|
| 51 | + * @param \DOMNode $element |
|
| 52 | 52 | * @return type |
| 53 | 53 | */ |
| 54 | 54 | protected function getNodeAttributes($element) |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | /** |
| 67 | 67 | * Get all of the children of the provided element, with simplification. |
| 68 | 68 | * |
| 69 | - * @param type $element |
|
| 69 | + * @param \DOMNode $element |
|
| 70 | 70 | * @return type |
| 71 | 71 | */ |
| 72 | 72 | protected function getNodeChildren($element) |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | * simplification is done. |
| 155 | 155 | * |
| 156 | 156 | * @param type $value |
| 157 | - * @return type |
|
| 157 | + * @return boolean |
|
| 158 | 158 | */ |
| 159 | 159 | protected function valueCanBeSimplified($value) |
| 160 | 160 | { |
@@ -4,7 +4,6 @@ |
||
| 4 | 4 | use Consolidation\OutputFormatters\SimplifyToArrayInterface; |
| 5 | 5 | use Consolidation\OutputFormatters\FormatterOptions; |
| 6 | 6 | use Consolidation\OutputFormatters\StructuredData\Xml\DomDataInterface; |
| 7 | -use Consolidation\OutputFormatters\StructuredData\Xml\XmlSchema; |
|
| 8 | 7 | |
| 9 | 8 | /** |
| 10 | 9 | * Simplify a DOMDocument to an array. |