AcmePhp\Ssl\DistinguishedName::__construct PHP Method

__construct() public method

public __construct ( string $commonName, string $countryName = null, string $stateOrProvinceName = null, string $localityName = null, string $organizationName = null, string $organizationalUnitName = null, string $emailAddress = null, array $subjectAlternativeNames = [] )
$commonName string
$countryName string
$stateOrProvinceName string
$localityName string
$organizationName string
$organizationalUnitName string
$emailAddress string
$subjectAlternativeNames array
    public function __construct($commonName, $countryName = null, $stateOrProvinceName = null, $localityName = null, $organizationName = null, $organizationalUnitName = null, $emailAddress = null, array $subjectAlternativeNames = [])
    {
        Assert::stringNotEmpty($commonName, __CLASS__ . '::$commonName expected a non empty string. Got: %s');
        Assert::nullOrString($countryName, __CLASS__ . '::$countryName expected a string. Got: %s');
        Assert::nullOrString($stateOrProvinceName, __CLASS__ . '::$stateOrProvinceName expected a string. Got: %s');
        Assert::nullOrString($localityName, __CLASS__ . '::$localityName expected a string. Got: %s');
        Assert::nullOrString($organizationName, __CLASS__ . '::$organizationName expected a string. Got: %s');
        Assert::nullOrString($organizationalUnitName, __CLASS__ . '::$organizationalUnitName expected a string. Got: %s');
        Assert::nullOrString($emailAddress, __CLASS__ . '::$emailAddress expected a string. Got: %s');
        Assert::allStringNotEmpty($subjectAlternativeNames, __CLASS__ . '::$subjectAlternativeNames expected an array of non empty string. Got: %s');
        $this->commonName = $commonName;
        $this->countryName = $countryName;
        $this->stateOrProvinceName = $stateOrProvinceName;
        $this->localityName = $localityName;
        $this->organizationName = $organizationName;
        $this->organizationalUnitName = $organizationalUnitName;
        $this->emailAddress = $emailAddress;
        $this->subjectAlternativeNames = array_diff(array_unique($subjectAlternativeNames), [$commonName]);
    }