From: Raphaƫl Gertz Date: Tue, 23 Feb 2021 23:17:08 +0000 (+0100) Subject: Rename title in civility X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/f41a3bf32b6978f70cda296b9f8168510457db8d 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; + } +}