From 5e164e07aa0bcea2bf9b6490a5c2eb1acbc6e6c8 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 1c8d3c2..41f1914 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; - } - } }