for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ocsp\Asn1\Element;
use Ocsp\Asn1\UniversalTagID;
/**
* ASN.1 element: SET / SET OF.
*/
class Set extends AbstractList
{
* {@inheritdoc}
*
* @see \Ocsp\Asn1\Element::getTypeID()
public function getTypeID()
return UniversalTagID::SET;
}
* Create a new instance.
* @param \Ocsp\Asn1\Element[] $elements
* @return static
public static function create(array $elements = [])
$result = new static();
return $result->addElements($elements);