diff --git a/Admin/Installer.php b/Admin/Installer.php index 3eabeb3..33d5ef7 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -36,7 +36,7 @@ class Installer extends InstallerAbstract /** * {@inheritdoc} */ - public static function install(Pool $dbPool, array $info) + public static function install(Pool $dbPool, InfoManager $info) { parent::install($dbPool, $info); diff --git a/Admin/Uninstall.php b/Admin/Uninstall.php index befd6f0..4e1484e 100644 --- a/Admin/Uninstall.php +++ b/Admin/Uninstall.php @@ -36,7 +36,7 @@ class Uninstall extends UninstallAbstract /** * {@inheritdoc} */ - public static function uninstall(Pool $dbPool, array $info) + public static function uninstall(Pool $dbPool, InfoManager $info) { parent::uninstall($dbPool, $info); } diff --git a/Controller.php b/Controller.php index 344269b..125fff6 100644 --- a/Controller.php +++ b/Controller.php @@ -19,7 +19,6 @@ use Modules\Navigation\Models\Navigation; use Modules\Navigation\Views\NavigationView; use phpOMS\Contract\RenderableInterface; use phpOMS\Message\RequestAbstract; -use phpOMS\Message\RequestDestination; use phpOMS\Message\ResponseAbstract; use phpOMS\Module\ModuleAbstract; use phpOMS\Module\WebInterface; @@ -64,16 +63,6 @@ class Controller extends ModuleAbstract implements WebInterface */ const MODULE_NAME = 'Support'; - /** - * Localization files. - * - * @var string - * @since 1.0.0 - */ - protected static $localization = [ - RequestDestination::BACKEND => [''], - ]; - /** * Providing. *