From 0d0ecf523883bc9f0b71fe4440d716c097dfe757 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 22 Dec 2018 19:51:26 +0100 Subject: [PATCH] Move schema to json --- Admin/Installer.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Admin/Installer.php b/Admin/Installer.php index a0106ac..314db6e 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -29,17 +29,4 @@ use phpOMS\Module\InstallerAbstract; */ class Installer extends InstallerAbstract { - - /** - * {@inheritdoc} - */ - public static function install(DatabasePool $dbPool, InfoManager $info) : void - { - parent::install($dbPool, $info); - - switch ($dbPool->get()->getType()) { - case DatabaseType::MYSQL: - break; - } - } }