[FORMATTING] Cherry-pick of Diogo's 763ac735c0758624ebd5957993dc0676b865927a

This commit is contained in:
Hugo Sales
2020-05-11 17:39:12 +00:00
committed by Hugo Sales
parent f60e37ba3d
commit f628665589
65 changed files with 505 additions and 114 deletions

View File

@@ -47,6 +47,7 @@ class UserLocationPrefs
$this->user_id = $user_id;
return $this;
}
public function getUserId(): int
{
return $this->user_id;
@@ -57,6 +58,7 @@ class UserLocationPrefs
$this->share_location = $share_location;
return $this;
}
public function getShareLocation(): ?bool
{
return $this->share_location;
@@ -67,6 +69,7 @@ class UserLocationPrefs
$this->created = $created;
return $this;
}
public function getCreated(): DateTimeInterface
{
return $this->created;
@@ -77,6 +80,7 @@ class UserLocationPrefs
$this->modified = $modified;
return $this;
}
public function getModified(): DateTimeInterface
{
return $this->modified;