for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace X509\AttributeCertificate\Attribute;
/**
* Implements value for 'Group' attribute.
*
* @link https://tools.ietf.org/html/rfc5755#section-4.4.4
*/
class GroupAttributeValue extends IetfAttrSyntax
{
const OID = "1.3.6.1.5.5.7.10.4";
* Constructor.
* @param IetfAttrValue ...$values
public function __construct(IetfAttrValue ...$values)
parent::__construct(...$values);
$this->_oid = self::OID;
}