| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | final class RepublishTarget extends AbstractEmdElement |
||
| 17 | { |
||
| 18 | use TypedTextContentTrait; |
||
| 19 | |||
| 20 | |||
| 21 | public const string TEXTCONTENT_TYPE = SAMLAnyURIValue::class; |
||
|
|
|||
| 22 | |||
| 23 | |||
| 24 | /** |
||
| 25 | * @param \SimpleSAML\SAML2\Type\SAMLAnyURIValue $content |
||
| 26 | */ |
||
| 27 | public function __construct( |
||
| 28 | SAMLAnyURIValue $content, |
||
| 29 | ) { |
||
| 30 | $this->setContent($content); |
||
| 31 | Assert::same($content->getValue(), 'http://edugain.org/'); |
||
| 32 | } |
||
| 33 | } |
||
| 34 |