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