From 84aa17ea4111a2b39a8cf8d9571836300466adf6 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 e5106db..65f530b 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; - } - } }