fix after settings pullout

This commit is contained in:
Dennis Eichhorn 2020-05-22 21:44:09 +02:00
parent d54e16829f
commit de5942b089

View File

@ -21,6 +21,7 @@ use phpOMS\Module\InstallerAbstract;
use phpOMS\Module\ModuleInfo;
use phpOMS\System\File\Local\Directory;
use phpOMS\Config\SettingsInterface;
/**
* Installer class.
@ -35,9 +36,9 @@ final class Installer extends InstallerAbstract
/**
* {@inheritdoc}
*/
public static function install(DatabasePool $dbPool, ModuleInfo $info) : void
public static function install(DatabasePool $dbPool, ModuleInfo $info, SettingsInterface $cfgHandler) : void
{
parent::install($dbPool, $info);
parent::install($dbPool, $info, $cfgHandler);
$interfaces = Directory::list(__DIR__ . '/../Interfaces', '.*interface\.json');