AcmePhp\Ssl\Key::__construct PHP Method

__construct() public method

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;
    }