| 1 | <?php |
||
| 13 | class NormalizeAttributeNames extends AbstractNormalization |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | */ |
||
| 18 | protected $queries = ['//@*', '//xsl:attribute[not(contains(@name, "{"))]']; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | */ |
||
| 23 | protected function normalizeAttribute(DOMAttr $attribute) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | protected function normalizeElement(DOMElement $element) |
||
| 40 | } |