From: Raphaƫl Gertz Date: Tue, 23 Feb 2021 23:17:08 +0000 (+0100) Subject: Rename title in civility X-Git-Tag: 0.2.1~56 X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/74d7efbf5c85d008f908480bbded253d6bc3775e Rename title in civility --- diff --git a/Entity/Civility.php b/Entity/Civility.php new file mode 100644 index 0000000..86030ed --- /dev/null +++ b/Entity/Civility.php @@ -0,0 +1,41 @@ +short = $short; + + return $this; + } + + /** + * Get short + * + * @return string + */ + public function getShort() { + return $this->short; + } + + /** + * Returns a string representation of the civility + * + * @return string + */ + public function __toString(): string { + return $this->short; + } +}