simplesamlphp /
xml-security
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace SimpleSAML\XMLSecurity\XML\ds; |
||
| 6 | |||
| 7 | use SimpleSAML\XML\TypedTextContentTrait; |
||
| 8 | use SimpleSAML\XMLSchema\Type\Base64BinaryValue; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * Class representing a ds:X509SKI element. |
||
| 12 | * |
||
| 13 | * @package simplesaml/xml-security |
||
| 14 | */ |
||
| 15 | final class X509SKI extends AbstractDsElement |
||
| 16 | { |
||
| 17 | use TypedTextContentTrait; |
||
| 18 | |||
| 19 | |||
| 20 | public const string TEXTCONTENT_TYPE = Base64BinaryValue::class; |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 21 | } |
||
| 22 |