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