[DATABASE][AUTOCODE] Autogenerated fields, setters and getters for each entity

This commit is contained in:
Hugo Sales
2020-03-30 15:13:51 +00:00
committed by Hugo Sales
parent 4bc3eabd29
commit 04202b59ef
57 changed files with 4006 additions and 0 deletions

View File

@@ -37,6 +37,40 @@ class ProfileBlock
{
// {{{ Autocode
private int $blocker;
private int $blocked;
private DateTime $modified;
public function setBlocker(int $blocker): self
{
$this->blocker = $blocker;
return $this;
}
public function getBlocker(): int
{
return $this->blocker;
}
public function setBlocked(int $blocked): self
{
$this->blocked = $blocked;
return $this;
}
public function getBlocked(): int
{
return $this->blocked;
}
public function setModified(DateTime $modified): self
{
$this->modified = $modified;
return $this;
}
public function getModified(): DateTime
{
return $this->modified;
}
// }}} Autocode
public static function schemaDef(): array