The trait SimpleSAML\SAML2\XML\StringElementTrait requires some properties which are not provided by SimpleSAML\SAML2\XML\saml\AssertionIDRef: $localName, $namespaceURI
Loading history...
24
StringElementTrait::validateContent as baseValidateContent;
25
}
26
27
28
/**
29
* @param string $content
30
*/
31
public function __construct(string $content)
32
{
33
$this->setContent($content);
34
}
35
36
37
/**
38
* Validate the content of the element.
39
*
40
* @param string $content The value to go in the XML textContent
41
* @throws \Exception on failure
42
* @return void
43
*/
44
protected function validateContent(string $content): void