Programming Language PHP

Namespace Spatie\SslCertificate

Class Downloader

Method/Function downloadCertificateFromUrl

Total Examples 1

1 code examples of PHP Spatie\SslCertificate\Downloader::downloadCertificateFromUrl extracted from open source projects

Was this example useful?
0
                                                    public static function createForHostName(string $url, int $timeout = 30, bool $verifyCertificate = true): self
    {
        return Downloader::downloadCertificateFromUrl($url, $timeout, $verifyCertificate);
    }
                                            
Downloader's Other Methods