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\Base64ElementTrait;
/**
* Class representing a ds:X509Certificate element.
*
* @package simplesamlphp/xml-security
* @psalm-suppress PropertyNotSetInConstructor $content
*/
final class X509Certificate extends AbstractDsElement
{
use Base64ElementTrait;
SimpleSAML\XML\Base64ElementTrait
SimpleSAML\XMLSecurity\XML\ds\X509Certificate
$localName
$namespaceURI
* @param string $content
public function __construct(string $content)
$this->setContent($content);
}