Shopware\Install\Services\ReleaseDownloader::__construct PHP Method

__construct() public method

public __construct ( ShopwareCli\Services\ProcessExecutor $processExecutor, ShopwareCli\Services\IoService $ioService, ShopwareCli\Services\FileDownloader $downloader, OpenSSLVerifier $openSSLVerifier, string $cachePath )
$processExecutor ShopwareCli\Services\ProcessExecutor
$ioService ShopwareCli\Services\IoService
$downloader ShopwareCli\Services\FileDownloader
$openSSLVerifier ShopwareCli\Services\OpenSSLVerifier
$cachePath string
    public function __construct(ProcessExecutor $processExecutor, IoService $ioService, FileDownloader $downloader, OpenSSLVerifier $openSSLVerifier, $cachePath)
    {
        $this->cachePath = $cachePath;
        $this->ioService = $ioService;
        $this->processExecutor = $processExecutor;
        $this->downloader = $downloader;
        $this->openSSLVerifier = $openSSLVerifier;
    }