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\TypedTextContentTrait;
use SimpleSAML\XMLSecurity\Type\CryptoBinaryValue;
/**
* Class representing a ds:PgenCounter element.
*
* @package simplesaml/xml-security
*/
final class PgenCounter extends AbstractDsElement
{
use TypedTextContentTrait;
/** @var string */
public const TEXTCONTENT_TYPE = CryptoBinaryValue::class;
}