From f4e9b042c6297daf0e78286d1cce0249da351bb0 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 64d2cba..5590e86 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -33,8 +33,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); } }