EzSystems\PlatformInstallerBundle\Command\InstallPlatformCommand::__construct PHP Method

__construct() public method

public __construct ( Doctrine\DBAL\Connection $db, array $installers, Symfony\Component\HttpKernel\CacheClearer\CacheClearerInterface $cacheClearer, Symfony\Component\Filesystem\Filesystem $filesystem, $cacheDir, $environment, $searchEngine )
$db Doctrine\DBAL\Connection
$installers array
$cacheClearer Symfony\Component\HttpKernel\CacheClearer\CacheClearerInterface
$filesystem Symfony\Component\Filesystem\Filesystem
    public function __construct(Connection $db, array $installers, CacheClearerInterface $cacheClearer, Filesystem $filesystem, $cacheDir, $environment, $searchEngine)
    {
        $this->db = $db;
        $this->installers = $installers;
        $this->cacheClearer = $cacheClearer;
        $this->filesystem = $filesystem;
        $this->cacheDir = $cacheDir;
        $this->environment = $environment;
        $this->searchEngine = $searchEngine;
        parent::__construct();
    }