[AUTOGENERATED] Update autogenerated code

This commit is contained in:
Hugo Sales
2020-06-30 18:20:50 +00:00
committed by Hugo Sales
parent 68a5551f36
commit a574971f0b
37 changed files with 361 additions and 754 deletions

View File

@@ -46,7 +46,6 @@ class Config
$this->section = $section;
return $this;
}
public function getSection(): string
{
return $this->section;
@@ -57,7 +56,6 @@ class Config
$this->setting = $setting;
return $this;
}
public function getSetting(): string
{
return $this->setting;
@@ -68,7 +66,6 @@ class Config
$this->value = $value;
return $this;
}
public function getValue(): ?string
{
return $this->value;
@@ -76,13 +73,6 @@ class Config
// }}} Autocode
public function __construct($sec, $set, $val)
{
$this->section = $sec;
$this->setting = $set;
$this->value = $val;
}
public static function schemaDef(): array
{
return [