simplesamlphp /
xml-soap
| 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\QNameValue; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * Class representing a env:Value element. |
||
| 12 | * |
||
| 13 | * @package simplesaml/xml-soap |
||
| 14 | */ |
||
| 15 | final class Value extends AbstractSoapElement |
||
| 16 | { |
||
| 17 | use TypedTextContentTrait; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 18 | |||
| 19 | |||
| 20 | /** @var string */ |
||
| 21 | public const TEXTCONTENT_TYPE = QNameValue::class; |
||
| 22 | } |
||
| 23 |