From 9d08c13338a90de1a35d4b42fb6b92ce1b4cd036 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 13 Oct 2019 20:40:33 +0200 Subject: [PATCH] Added tests for time recording impl. --- Models/Profile.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Models/Profile.php b/Models/Profile.php index f4be5a1..50dcbcb 100644 --- a/Models/Profile.php +++ b/Models/Profile.php @@ -37,7 +37,7 @@ class Profile implements \JsonSerializable * @var int * @since 1.0.0 */ - private int $id = 0; + protected int $id = 0; /** * Profile image. @@ -45,7 +45,7 @@ class Profile implements \JsonSerializable * @var null|int|Media * @since 1.0.0 */ - private $image = null; + protected $image = null; /** * Birthday. @@ -53,7 +53,7 @@ class Profile implements \JsonSerializable * @var \DateTime * @since 1.0.0 */ - private \DateTime $birthday; + protected \DateTime $birthday; /** * Account. @@ -61,7 +61,7 @@ class Profile implements \JsonSerializable * @var Account * @since 1.0.0 */ - private $account = null; + protected $account = null; /** * Location data. @@ -69,7 +69,7 @@ class Profile implements \JsonSerializable * @var array * @since 1.0.0 */ - private array $location = []; + protected array $location = []; /** * Constructor.