phpbb\install\module\update_database\task\update::__construct PHP Method

__construct() public method

Constructor
public __construct ( phpbb\install\helper\container_factory $container, phpbb\filesystem\filesystem $filesystem, phpbb\install\helper\config $installer_config, phpbb\install\helper\iohandler\iohandler_interface $iohandler, phpbb\language\language $language, string $phpbb_root_path )
$container phpbb\install\helper\container_factory
$filesystem phpbb\filesystem\filesystem
$installer_config phpbb\install\helper\config
$iohandler phpbb\install\helper\iohandler\iohandler_interface
$language phpbb\language\language
$phpbb_root_path string
    public function __construct(\phpbb\install\helper\container_factory $container, \phpbb\filesystem\filesystem $filesystem, \phpbb\install\helper\config $installer_config, \phpbb\install\helper\iohandler\iohandler_interface $iohandler, \phpbb\language\language $language, $phpbb_root_path)
    {
        $this->filesystem = $filesystem;
        $this->installer_config = $installer_config;
        $this->iohandler = $iohandler;
        $this->language = $language;
        $this->phpbb_root_path = $phpbb_root_path;
        $this->cache = $container->get('cache.driver');
        $this->config = $container->get('config');
        $this->extension_manager = $container->get('ext.manager');
        $this->log = $container->get('log');
        $this->migrator = $container->get('migrator');
        $this->user = $container->get('user');
        parent::__construct(true);
    }