Added tests for time recording impl.

This commit is contained in:
Dennis Eichhorn 2019-10-13 20:40:33 +02:00
parent d21b8b0cf1
commit 9d08c13338

View File

@ -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.