simplesamlphp /
xml-common
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace SimpleSAML\XMLSchema; |
||
| 6 | |||
| 7 | /** |
||
| 8 | * Various XML constants. |
||
| 9 | * |
||
| 10 | * @package simplesamlphp/xml-common |
||
| 11 | */ |
||
| 12 | class Constants |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * The namespace for XML schema. |
||
| 16 | */ |
||
| 17 | public const string NS_XS = 'http://www.w3.org/2001/XMLSchema'; |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 18 | |||
| 19 | /** |
||
| 20 | * The namespace for XML schema instance. |
||
| 21 | */ |
||
| 22 | public const string NS_XSI = 'http://www.w3.org/2001/XMLSchema-instance'; |
||
| 23 | } |
||
| 24 |