[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

@@ -54,6 +54,7 @@ class Token
$this->consumer_key = $consumer_key;
return $this;
}
public function getConsumerKey(): string
{
return $this->consumer_key;
@@ -64,6 +65,7 @@ class Token
$this->tok = $tok;
return $this;
}
public function getTok(): string
{
return $this->tok;
@@ -74,6 +76,7 @@ class Token
$this->secret = $secret;
return $this;
}
public function getSecret(): string
{
return $this->secret;
@@ -84,6 +87,7 @@ class Token
$this->type = $type;
return $this;
}
public function getType(): int
{
return $this->type;
@@ -94,6 +98,7 @@ class Token
$this->state = $state;
return $this;
}
public function getState(): ?int
{
return $this->state;
@@ -104,6 +109,7 @@ class Token
$this->verifier = $verifier;
return $this;
}
public function getVerifier(): ?string
{
return $this->verifier;
@@ -114,6 +120,7 @@ class Token
$this->verified_callback = $verified_callback;
return $this;
}
public function getVerifiedCallback(): ?string
{
return $this->verified_callback;
@@ -124,6 +131,7 @@ class Token
$this->created = $created;
return $this;
}
public function getCreated(): DateTimeInterface
{
return $this->created;
@@ -134,6 +142,7 @@ class Token
$this->modified = $modified;
return $this;
}
public function getModified(): DateTimeInterface
{
return $this->modified;