bug fixes

This commit is contained in:
Dennis Eichhorn 2019-10-06 21:01:18 +02:00
parent d55ccb853a
commit 55c9a652c0

View File

@ -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']);
}
}