mirror of
https://github.com/Karaka-Management/oms-HumanResourceManagement.git
synced 2026-01-11 04:18:41 +00:00
Force public member variables or mapper changes
This commit is contained in:
parent
34a750824f
commit
6d30edc701
|
|
@ -59,7 +59,7 @@ class Employee implements \JsonSerializable
|
|||
* @var array
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private array $companyHistory = [];
|
||||
public array $companyHistory = [];
|
||||
|
||||
/**
|
||||
* Employee education history.
|
||||
|
|
@ -67,7 +67,7 @@ class Employee implements \JsonSerializable
|
|||
* @var array
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private array $educationHistory = [];
|
||||
public array $educationHistory = [];
|
||||
|
||||
/**
|
||||
* Employee external work history.
|
||||
|
|
@ -75,7 +75,7 @@ class Employee implements \JsonSerializable
|
|||
* @var array
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private array $workHistory = [];
|
||||
public array $workHistory = [];
|
||||
|
||||
/**
|
||||
* Employee hash used for time tracking / employee card
|
||||
|
|
@ -83,7 +83,7 @@ class Employee implements \JsonSerializable
|
|||
* @var string
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private string $semiPrivateHash = '';
|
||||
public string $semiPrivateHash = '';
|
||||
|
||||
/**
|
||||
* Employee hash length used for time tracking / employee card
|
||||
|
|
@ -91,7 +91,7 @@ class Employee implements \JsonSerializable
|
|||
* @var int
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private const SEMI_PRIVATE_HASH_LENGTH = 64;
|
||||
public const SEMI_PRIVATE_HASH_LENGTH = 64;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user