From 8b20f7932f4a02c1bde0ce3b6dfe9bd5e47065cd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 20 May 2018 11:53:43 +0200 Subject: [PATCH] Remove unused parameter from install --- Admin/Installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Admin/Installer.php b/Admin/Installer.php index 3601249..6f7706d 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -32,8 +32,8 @@ class Installer extends InstallerAbstract /** * {@inheritdoc} */ - public static function install(string $path, DatabasePool $dbPool, InfoManager $info) : void + public static function install(DatabasePool $dbPool, InfoManager $info) : void { - parent::install(__DIR__ . '/..', $dbPool, $info); + parent::install($dbPool, $info); } }