diff --git a/library/Icinga/Application/WebInstaller.php b/library/Icinga/Application/WebInstaller.php new file mode 100644 index 000000000..e83a6d7e0 --- /dev/null +++ b/library/Icinga/Application/WebInstaller.php @@ -0,0 +1,54 @@ +pageData = $pageData; + } + + /** + * @see Installer::run() + */ + public function run() + { + return true; + } + + /** + * @see Installer::getSummary() + */ + public function getSummary() + { + return array(); + } + + /** + * @see Installer::getReport() + */ + public function getReport() + { + return array(); + } +}