Test fixes
Some checks failed
Image optimization / general_image_workflow (push) Has been cancelled
CI / general_module_workflow_php (push) Has been cancelled
CI / general_module_workflow_js (push) Has been cancelled

This commit is contained in:
Dennis Eichhorn 2024-05-16 02:14:54 +00:00
parent 1e0a52edad
commit 4822b1f20c
11 changed files with 42 additions and 50 deletions

View File

@ -14,11 +14,9 @@ declare(strict_types=1);
namespace Modules\HumanResourceTimeRecording\Controller; namespace Modules\HumanResourceTimeRecording\Controller;
use Modules\Admin\Models\AccountMapper;
use Modules\Admin\Models\NullAccount; use Modules\Admin\Models\NullAccount;
use Modules\HumanResourceManagement\Models\EmployeeMapper; use Modules\HumanResourceManagement\Models\EmployeeMapper;
use Modules\HumanResourceTimeRecording\Models\ClockingStatus; use Modules\HumanResourceTimeRecording\Models\ClockingStatus;
use Modules\HumanResourceTimeRecording\Models\ClockingType;
use Modules\HumanResourceTimeRecording\Models\NullClockingType; use Modules\HumanResourceTimeRecording\Models\NullClockingType;
use Modules\HumanResourceTimeRecording\Models\PermissionCategory; use Modules\HumanResourceTimeRecording\Models\PermissionCategory;
use Modules\HumanResourceTimeRecording\Models\Session; use Modules\HumanResourceTimeRecording\Models\Session;

View File

@ -1,5 +0,0 @@
# Structure
## ER
![ER](Modules/HumanResourceTimeRecording/Docs/Dev/img/er.png)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
namespace Modules\HumanResourceTimeRecording\Models; namespace Modules\HumanResourceTimeRecording\Models;
use Modules\Media\Models\Collection;
use phpOMS\Localization\BaseStringL11n; use phpOMS\Localization\BaseStringL11n;
use phpOMS\Localization\ISO639x1Enum; use phpOMS\Localization\ISO639x1Enum;

View File

@ -4,7 +4,7 @@
* *
* PHP Version 8.2 * PHP Version 8.2
* *
* @package Modules\HumanResourceTimerecording\Models * @package Modules\HumanResourceTimeRecording\Models
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 2.0 * @license OMS License 2.0
* @version 1.0.0 * @version 1.0.0
@ -12,7 +12,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace Modules\HumanResourceTimerecording\Models; namespace Modules\HumanResourceTimeRecording\Models;
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory; use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
use phpOMS\Localization\BaseStringL11n; use phpOMS\Localization\BaseStringL11n;
@ -20,7 +20,7 @@ use phpOMS\Localization\BaseStringL11n;
/** /**
* Clocking type l11n mapper class. * Clocking type l11n mapper class.
* *
* @package Modules\HumanResourceTimerecording\Models * @package Modules\HumanResourceTimeRecording\Models
* @license OMS License 2.0 * @license OMS License 2.0
* @link https://jingga.app * @link https://jingga.app
* @since 1.0.0 * @since 1.0.0

View File

@ -66,7 +66,7 @@ class Session implements \JsonSerializable
/** /**
* Session type. * Session type.
* *
* @var int * @var ClockingType
* @since 1.0.0 * @since 1.0.0
*/ */
public ClockingType $type; public ClockingType $type;

View File

@ -12,7 +12,7 @@
}, },
"creator": { "creator": {
"name": "Jingga", "name": "Jingga",
"website": "jingga.app" "website": "https://jingga.app"
}, },
"directory": "HumanResourceTimeRecording", "directory": "HumanResourceTimeRecording",
"dependencies": { "dependencies": {