ShopwareCli\Services\OpenSSLVerifier::__construct PHP Method

__construct() public method

public __construct ( string $publicKey )
$publicKey string
    public function __construct($publicKey)
    {
        if (!is_readable($publicKey)) {
            throw new \InvalidArgumentException(sprintf("Public keyfile (%s) not readable", $publicKey));
        }
        $this->publicKey = $publicKey;
    }