From 55c9a652c0f5d88a8725bee9c83a2ba4f4e664b3 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 6 Oct 2019 21:01:18 +0200 Subject: [PATCH] bug fixes --- Admin/Install/Media.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Admin/Install/Media.php b/Admin/Install/Media.php index a494cab..94fc6d7 100644 --- a/Admin/Install/Media.php +++ b/Admin/Install/Media.php @@ -4,7 +4,7 @@ * * PHP Version 7.4 * - * @package Modules\Helper\HumanResourceManagement\Install + * @package Modules\HumanResourceManagement\Admin\Install * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -12,14 +12,14 @@ */ declare(strict_types=1); -namespace Modules\Helper\HumanResourceManagement\Install; +namespace Modules\HumanResourceManagement\Admin\Install; use phpOMS\DataStorage\Database\DatabasePool; /** * Media class. * - * @package Modules\Helper\HumanResourceManagement\Install + * @package Modules\HumanResourceManagement\Admin\Install * @license OMS License 1.0 * @link https://orange-management.org * @since 1.0.0 @@ -38,6 +38,6 @@ class Media */ public static function install(string $path, DatabasePool $dbPool) : void { - \Modules\Media\HumanResourceManagement\Installer::installExternal($dbPool, ['path' => __DIR__ . '/Media.install.json']); + \Modules\Media\Admin\Installer::installExternal($dbPool, ['path' => __DIR__ . '/Media.install.json']); } }