Remove unused parameter from install

This commit is contained in:
Dennis Eichhorn 2018-05-20 11:53:43 +02:00
parent 6f9a704b3d
commit fbf12f0505

View File

@ -32,8 +32,8 @@ class Installer extends InstallerAbstract
/** /**
* {@inheritdoc} * {@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);
} }
} }