| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | abstract class AbstractEcElement extends AbstractXMLElement |
||
| 17 | { |
||
| 18 | /** @var string */ |
||
| 19 | public const NS = Constants::C14N_EXCLUSIVE_WITHOUT_COMMENTS; |
||
| 20 | |||
| 21 | /** @var string */ |
||
| 22 | public const NS_PREFIX = 'ec'; |
||
| 23 | |||
| 24 | |||
| 25 | /** |
||
| 26 | * Get the namespace for the element. |
||
| 27 | * |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public static function getNamespaceURI(): string |
||
| 31 | { |
||
| 32 | return static::NS; |
||
| 33 | } |
||
| 34 | |||
| 35 | |||
| 36 | /** |
||
| 37 | * Get the namespace prefix for the element. |
||
| 38 | * |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | public static function getNamespacePrefix(): string |
||
| 44 | } |
||
| 45 | } |