for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SimpleSAML\SAML2\XML\md;
use DOMElement;
use SimpleSAML\Assert\Assert;
use SimpleSAML\SAML2\Assert\Assert as SAMLAssert;
use SimpleSAML\SAML2\XML\StringElementTrait;
use SimpleSAML\XML\Exception\InvalidDOMElementException;
use SimpleSAML\XML\SchemaValidatableElementInterface;
use SimpleSAML\XML\SchemaValidatableElementTrait;
/**
* Class implementing AttributeProfile.
*
* @package simplesamlphp/saml2
*/
final class AttributeProfile extends AbstractMdElement implements SchemaValidatableElementInterface
{
use SchemaValidatableElementTrait;
use StringElementTrait;
SimpleSAML\SAML2\XML\StringElementTrait
SimpleSAML\SAML2\XML\md\AttributeProfile
$localName
$namespaceURI
* @param string $content
public function __construct(string $content)
$this->setContent($content);
}