Contao\CoreBundle\Cache\ContaoCacheWarmer::__construct PHP Method

__construct() public method

Constructor.
public __construct ( Symfony\Component\Filesystem\Filesystem $filesystem, Contao\CoreBundle\Config\ResourceFinderInterface $finder, Symfony\Component\Config\FileLocator $locator, string $rootDir, Doctrine\DBAL\Connection $connection, Contao\CoreBundle\Framework\ContaoFrameworkInterface $framework )
$filesystem Symfony\Component\Filesystem\Filesystem
$finder Contao\CoreBundle\Config\ResourceFinderInterface
$locator Symfony\Component\Config\FileLocator
$rootDir string
$connection Doctrine\DBAL\Connection
$framework Contao\CoreBundle\Framework\ContaoFrameworkInterface
    public function __construct(Filesystem $filesystem, ResourceFinderInterface $finder, FileLocator $locator, $rootDir, Connection $connection, ContaoFrameworkInterface $framework)
    {
        $this->filesystem = $filesystem;
        $this->finder = $finder;
        $this->locator = $locator;
        $this->rootDir = $rootDir;
        $this->connection = $connection;
        $this->framework = $framework;
    }