[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 c67cf336d4
commit 0d5f66e8b8
65 changed files with 505 additions and 114 deletions

View File

@@ -51,6 +51,7 @@ class OauthApplicationUser
$this->profile_id = $profile_id;
return $this;
}
public function getProfileId(): int
{
return $this->profile_id;
@@ -61,6 +62,7 @@ class OauthApplicationUser
$this->application_id = $application_id;
return $this;
}
public function getApplicationId(): int
{
return $this->application_id;
@@ -71,6 +73,7 @@ class OauthApplicationUser
$this->access_type = $access_type;
return $this;
}
public function getAccessType(): ?int
{
return $this->access_type;
@@ -81,6 +84,7 @@ class OauthApplicationUser
$this->token = $token;
return $this;
}
public function getToken(): ?string
{
return $this->token;
@@ -91,6 +95,7 @@ class OauthApplicationUser
$this->created = $created;
return $this;
}
public function getCreated(): DateTimeInterface
{
return $this->created;
@@ -101,6 +106,7 @@ class OauthApplicationUser
$this->modified = $modified;
return $this;
}
public function getModified(): DateTimeInterface
{
return $this->modified;