for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SimpleSAML\SAML11\XML\saml;
use SimpleSAML\SAML11\XML\URIElementTrait;
use SimpleSAML\XML\SchemaValidatableElementInterface;
use SimpleSAML\XML\SchemaValidatableElementTrait;
/**
* Class representing a saml:ConfirmationMethod element.
*
* @package simplesamlphp/saml11
*/
final class ConfirmationMethod extends AbstractSamlElement implements SchemaValidatableElementInterface
{
use SchemaValidatableElementTrait;
use URIElementTrait;
SimpleSAML\SAML11\XML\URIElementTrait
SimpleSAML\SAML11\XML\saml\ConfirmationMethod
$localName
$namespaceURI
* @param string $content
public function __construct(string $content)
$this->setContent($content);
}