simplesamlphp /
xml-security
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace SimpleSAML\XMLSecurity\XML\dsig11; |
||
| 6 | |||
| 7 | use SimpleSAML\XML\AbstractElement; |
||
| 8 | use SimpleSAML\XMLSecurity\Constants as C; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * Abstract class to be implemented by all the classes in this namespace |
||
| 12 | * |
||
| 13 | * @package simplesamlphp/xml-security |
||
| 14 | */ |
||
| 15 | abstract class AbstractDsig11Element extends AbstractElement |
||
| 16 | { |
||
| 17 | public const string NS = C::NS_XDSIG11; |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 18 | |||
| 19 | public const string NS_PREFIX = 'dsig11'; |
||
| 20 | |||
| 21 | public const string SCHEMA = 'resources/schemas/xmldsig11-schema.xsd'; |
||
| 22 | } |
||
| 23 |