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\Type\SAMLAnyURIValue;
use SimpleSAML\XML\{SchemaValidatableElementInterface, SchemaValidatableElementTrait};
use SimpleSAML\XML\TypedTextContentTrait;
/**
* Class representing a saml:ConfirmationMethod element.
*
* @package simplesamlphp/saml11
*/
final class ConfirmationMethod extends AbstractSamlElement implements SchemaValidatableElementInterface
{
use SchemaValidatableElementTrait;
use TypedTextContentTrait;
/** @var string */
public const TEXTCONTENT_TYPE = SAMLAnyURIValue::class;
}