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

__construct() public method

Construct
public __construct ( phpbb\filesystem\filesystem $filesystem, phpbb\install\helper\config $config, phpbb\install\helper\iohandler\iohandler_interface $iohandler, phpbb\install\helper\update_helper $update_helper, string $phpbb_root_path )
$filesystem phpbb\filesystem\filesystem
$config phpbb\install\helper\config
$iohandler phpbb\install\helper\iohandler\iohandler_interface
$update_helper phpbb\install\helper\update_helper
$phpbb_root_path string
    public function __construct(filesystem $filesystem, config $config, iohandler_interface $iohandler, update_helper $update_helper, $phpbb_root_path)
    {
        $this->filesystem = $filesystem;
        $this->installer_config = $config;
        $this->iohandler = $iohandler;
        $this->update_helper = $update_helper;
        $this->phpbb_root_path = $phpbb_root_path;
        parent::__construct(false);
    }