This commit is contained in:
Dennis Eichhorn 2018-02-03 13:09:09 +01:00
parent 198605ecd3
commit 38a84bd0ad
3 changed files with 7 additions and 5 deletions

View File

@ -19,7 +19,6 @@ use phpOMS\Module\UpdateAbstract;
use phpOMS\System\File\Directory; use phpOMS\System\File\Directory;
use phpOMS\Module\InfoManager; use phpOMS\Module\InfoManager;
/** /**
* Navigation class. * Navigation class.
* *

View File

@ -24,7 +24,8 @@ use Modules\Admin\Models\Account;
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0
*/ */
class Employee { class Employee
{
/** /**
* Employee ID. * Employee ID.
@ -53,7 +54,8 @@ class Employee {
$this->account = $account; $this->account = $account;
} }
public function getAccount() : Account { public function getAccount() : Account
{
return $this->account; return $this->account;
} }

View File

@ -22,6 +22,7 @@ namespace Modules\HumanResourceManagement\Models;
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0
*/ */
class EmployeeHistory { class EmployeeHistory
{
} }