for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SimpleSAML\XMLSecurity\XML\ds;
use SimpleSAML\XML\Type\Base64BinaryValue;
use SimpleSAML\XML\TypedTextContentTrait;
/**
* Class representing a ds:X509Certificate element.
*
* @package simplesamlphp/xml-security
*/
final class X509Certificate extends AbstractDsElement
{
use TypedTextContentTrait;
/** @var string */
public const TEXTCONTENT_TYPE = Base64BinaryValue::class;
}