Remove unused parameter from install

This commit is contained in:
Dennis Eichhorn 2018-05-20 11:53:43 +02:00
parent 9996b0daf8
commit 2ccc4e753b

View File

@ -33,9 +33,9 @@ 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);
switch ($dbPool->get()->getType()) {
case DatabaseType::MYSQL: