mirror of
https://github.com/Karaka-Management/oms-Profile.git
synced 2026-02-15 14:58:40 +00:00
Added tests for time recording impl.
This commit is contained in:
parent
d21b8b0cf1
commit
9d08c13338
|
|
@ -37,7 +37,7 @@ class Profile implements \JsonSerializable
|
||||||
* @var int
|
* @var int
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private int $id = 0;
|
protected int $id = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Profile image.
|
* Profile image.
|
||||||
|
|
@ -45,7 +45,7 @@ class Profile implements \JsonSerializable
|
||||||
* @var null|int|Media
|
* @var null|int|Media
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private $image = null;
|
protected $image = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Birthday.
|
* Birthday.
|
||||||
|
|
@ -53,7 +53,7 @@ class Profile implements \JsonSerializable
|
||||||
* @var \DateTime
|
* @var \DateTime
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private \DateTime $birthday;
|
protected \DateTime $birthday;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Account.
|
* Account.
|
||||||
|
|
@ -61,7 +61,7 @@ class Profile implements \JsonSerializable
|
||||||
* @var Account
|
* @var Account
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private $account = null;
|
protected $account = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Location data.
|
* Location data.
|
||||||
|
|
@ -69,7 +69,7 @@ class Profile implements \JsonSerializable
|
||||||
* @var array<Location>
|
* @var array<Location>
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $location = [];
|
protected array $location = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user