[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

@@ -46,6 +46,7 @@ class Config
$this->section = $section;
return $this;
}
public function getSection(): string
{
return $this->section;
@@ -56,6 +57,7 @@ class Config
$this->setting = $setting;
return $this;
}
public function getSetting(): string
{
return $this->setting;
@@ -66,6 +68,7 @@ class Config
$this->value = $value;
return $this;
}
public function getValue(): ?string
{
return $this->value;