);
}
- static::installFiles();
+ $fileHandler = new SetupFileHandler();
+ new Installer(self::$directories['wcf'], SETUP_FILE, $fileHandler, 'install/files/');
+ $fileHandler->dumpToFile(self::$directories['wcf'] . 'files.log');
return $this->gotoNextStep('configureDB');
}
)
);
}
-
- /**
- * Installs the files of the tar archive.
- */
- protected static function installFiles()
- {
- $fileHandler = new SetupFileHandler();
- new Installer(self::$directories['wcf'], SETUP_FILE, $fileHandler, 'install/files/');
- $fileHandler->dumpToFile(self::$directories['wcf'] . 'files.log');
- }
}