phpbb\install\installer::__construct PHP Method

__construct() public method

Constructor
public __construct ( phpbb\cache\driver\driver_interface $cache, phpbb\install\helper\config $config, phpbb\path_helper $path_helper, phpbb\install\helper\container_factory $container )
$cache phpbb\cache\driver\driver_interface Cache service
$config phpbb\install\helper\config Installer config handler
$path_helper phpbb\path_helper Path helper
$container phpbb\install\helper\container_factory Container
    public function __construct(driver_interface $cache, config $config, path_helper $path_helper, container_factory $container)
    {
        $this->cache = $cache;
        $this->install_config = $config;
        $this->container_factory = $container;
        $this->installer_modules = null;
        $this->web_root = $path_helper->get_web_root_path();
        $this->purge_cache_before = false;
    }