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\samlp;
use SimpleSAML\SAML11\Type\StringValue;
use SimpleSAML\XML\{SchemaValidatableElementInterface, SchemaValidatableElementTrait};
use SimpleSAML\XML\TypedTextContentTrait;
/**
* SAML AssertionArtifact element.
*
* @package simplesamlphp/saml11
*/
final class AssertionArtifact extends AbstractSamlpElement implements SchemaValidatableElementInterface
{
use SchemaValidatableElementTrait;
use TypedTextContentTrait;
/** @var string */
public const TEXTCONTENT_TYPE = StringValue::class;
}