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\dsig11;
use SimpleSAML\XML\Type\PositiveIntegerValue;
use SimpleSAML\XML\TypedTextContentTrait;
/**
* Class representing a dsig11:K1 element.
*
* @package simplesaml/xml-security
*/
final class K1 extends AbstractDsig11Element
{
use TypedTextContentTrait;
/** @var string */
public const TEXTCONTENT_TYPE = PositiveIntegerValue::class;
}