mirror of
https://github.com/shlinkio/shlink.git
synced 2025-03-14 04:00:57 +03:00
Removed not needed null check
This commit is contained in:
parent
bfeb915cd2
commit
bf0d9ab7d9
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ class Visit extends AbstractEntity implements JsonSerializable
|
|||
{
|
||||
return [
|
||||
'referer' => $this->referer,
|
||||
'date' => $this->date !== null ? $this->date->toAtomString() : null,
|
||||
'date' => $this->date->toAtomString(),
|
||||
'userAgent' => $this->userAgent,
|
||||
'visitLocation' => $this->visitLocation,
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue