1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace SimpleSAML\SOAP12\XML; |
||
6 | |||
7 | use SimpleSAML\XML\TypedTextContentTrait; |
||
8 | use SimpleSAML\XMLSchema\Type\AnyURIValue; |
||
9 | |||
10 | /** |
||
11 | * Class representing a env:Role element. |
||
12 | * |
||
13 | * @package simplesaml/xml-soap |
||
14 | */ |
||
15 | final class Role extends AbstractSoapElement |
||
16 | { |
||
17 | use TypedTextContentTrait; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
18 | |||
19 | /** @var string */ |
||
20 | public const TEXTCONTENT_TYPE = AnyURIValue::class; |
||
21 | } |
||
22 |