change module info name

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

View File

@ -15,7 +15,7 @@ declare(strict_types=1);
namespace Modules\Search\Admin;
use phpOMS\DataStorage\Database\DatabasePool;
use phpOMS\Module\InfoManager;
use phpOMS\Module\ModuleInfo;
use phpOMS\Module\InstallerAbstract;
use phpOMS\System\File\PathException;
use phpOMS\System\File\PermissionException;
@ -34,7 +34,7 @@ class Installer extends InstallerAbstract
/**
* {@inheritdoc}
*/
public static function install(DatabasePool $dbPool, InfoManager $info) : void
public static function install(DatabasePool $dbPool, ModuleInfo $info) : void
{
if (\file_exists(__DIR__ . '/../SearchCommands.php')) {
\unlink(__DIR__ . '/../SearchCommands.php');

View File

@ -14,7 +14,7 @@ declare(strict_types=1);
namespace Modules\Search\Controller;
use phpOMS\ApplicationAbstract;
use phpOMS\Application\ApplicationAbstract;
use phpOMS\Message\NotificationLevel;
use phpOMS\Message\RequestAbstract;
use phpOMS\Message\ResponseAbstract;