for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SAML2\XML\md;
use SAML2\SignedElementTrait;
use SAML2\SignedElementInterface;
/**
* Abstract class that represents a signed metadata element.
*
* @package simplesamlphp/saml2
*/
abstract class AbstractSignedMdElement extends AbstractMdElement implements SignedElementInterface
{
use SignedElementTrait;
}