From 6d30edc701fc25a3271e059be3aae9b774472fef Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 4 Oct 2023 15:52:16 +0000 Subject: [PATCH] Force public member variables or mapper changes --- Models/Employee.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Models/Employee.php b/Models/Employee.php index abc3de3..53fe6b2 100755 --- a/Models/Employee.php +++ b/Models/Employee.php @@ -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.