phpbb\install\module\update_filesystem\task\show_file_status::__construct PHP Method

__construct() public method

Constructor
public __construct ( phpbb\install\helper\container_factory $container, phpbb\install\helper\config $config, phpbb\install\helper\iohandler\iohandler_interface $iohandler, phpbb\filesystem\filesystem $filesystem, phpbb\install\helper\file_updater\factory $file_updater_factory )
$container phpbb\install\helper\container_factory
$config phpbb\install\helper\config
$iohandler phpbb\install\helper\iohandler\iohandler_interface
$filesystem phpbb\filesystem\filesystem
$file_updater_factory phpbb\install\helper\file_updater\factory
    public function __construct(container_factory $container, config $config, iohandler_interface $iohandler, filesystem $filesystem, factory $file_updater_factory)
    {
        $this->installer_config = $config;
        $this->iohandler = $iohandler;
        $this->filesystem = $filesystem;
        $this->cache = $container->get('cache.driver');
        // Initialize compression file updater
        $this->file_updater = $file_updater_factory->get('compression');
        parent::__construct(false);
    }