change module info name

This commit is contained in:
Dennis Eichhorn 2020-02-24 21:23:13 +01:00
parent 9ba23caf90
commit ff1a2c44f9
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ namespace Modules\Exchange\Admin;
use Modules\Exchange\Models\InterfaceManager;
use Modules\Exchange\Models\InterfaceManagerMapper;
use phpOMS\DataStorage\Database\DatabasePool;
use phpOMS\Module\InfoManager;
use phpOMS\Module\ModuleInfo;
use phpOMS\Module\InstallerAbstract;
use phpOMS\System\File\Local\Directory;
@ -35,7 +35,7 @@ class Installer extends InstallerAbstract
/**
* {@inheritdoc}
*/
public static function install(DatabasePool $dbPool, InfoManager $info) : void
public static function install(DatabasePool $dbPool, ModuleInfo $info) : void
{
parent::install($dbPool, $info);

View File

@ -18,7 +18,7 @@ use phpOMS\System\File\PathException;
use phpOMS\Utils\ArrayUtils;
/**
* InfoManager class.
* ModuleInfo class.
*
* Handling the info files for modules
*