From ffb54c4f7a7780f1b40a1dae59382079f95f9c62 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Thu, 13 Sep 2018 23:52:22 +0200 Subject: [PATCH] Fixed typehint --- module/Core/src/Entity/Visit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/Core/src/Entity/Visit.php b/module/Core/src/Entity/Visit.php index 5e2cca75..303344a7 100644 --- a/module/Core/src/Entity/Visit.php +++ b/module/Core/src/Entity/Visit.php @@ -29,12 +29,12 @@ class Visit extends AbstractEntity implements \JsonSerializable */ private $date; /** - * @var string + * @var string|null * @ORM\Column(type="string", length=256, name="remote_addr", nullable=true) */ private $remoteAddr; /** - * @var string + * @var string|null * @ORM\Column(type="string", length=256, name="remote_addr_hash", nullable=true) */ private $remoteAddrHash;