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

__construct() public method

public __construct ( ReleaseDownloader $releaseDownloader, ShopwareCli\Config $config, Shopware\Install\Services\VcsGenerator $vcsGenerator, Shopware\Install\Services\ConfigWriter $configWriter, Shopware\Install\Services\Database $database, Shopware\Install\Services\Demodata $demodata, ShopwareCli\Services\IoService $ioService, Shopware\Install\Services\PostInstall $postInstall, ShopwareCli\Services\ProcessExecutor $processExecutor )
$releaseDownloader Shopware\Install\Services\ReleaseDownloader
$config ShopwareCli\Config
$vcsGenerator Shopware\Install\Services\VcsGenerator
$configWriter Shopware\Install\Services\ConfigWriter
$database Shopware\Install\Services\Database
$demodata Shopware\Install\Services\Demodata
$ioService ShopwareCli\Services\IoService
$postInstall Shopware\Install\Services\PostInstall
$processExecutor ShopwareCli\Services\ProcessExecutor
    public function __construct(ReleaseDownloader $releaseDownloader, Config $config, VcsGenerator $vcsGenerator, ConfigWriter $configWriter, Database $database, Demodata $demodata, IoService $ioService, PostInstall $postInstall, ProcessExecutor $processExecutor)
    {
        $this->releaseDownloader = $releaseDownloader;
        $this->config = $config;
        $this->vcsGenerator = $vcsGenerator;
        $this->configWriter = $configWriter;
        $this->database = $database;
        $this->demodata = $demodata;
        $this->ioService = $ioService;
        $this->postInstall = $postInstall;
        $this->processExecutor = $processExecutor;
    }