AcmePhp\Ssl\Key::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( string $keyPEM )
$keyPEM string
    public function __construct($keyPEM)
    {
        Assert::stringNotEmpty($keyPEM, __CLASS__ . '::$keyPEM should not be an empty string. Got %s');
        $this->keyPEM = $keyPEM;
    }