for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Sop\X501\ASN1\AttributeValue;
use Sop\X501\ASN1\AttributeType;
use Sop\X501\ASN1\AttributeValue\Feature\PrintableStringValue;
/**
* 'countryName' attribute value.
*
* @see https://www.itu.int/ITU-T/formal-language/itu-t/x/x520/2012/SelectedAttributeTypes.html#SelectedAttributeTypes.countryName
*/
class CountryNameValue extends PrintableStringValue
{
* Constructor.
* @param string $value String value
public function __construct(string $value)
$this->_oid = AttributeType::OID_COUNTRY_NAME;
parent::__construct($value);
}