From f41a3bf32b6978f70cda296b9f8168510457db8d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 24 Feb 2021 00:17:08 +0100 Subject: [PATCH] Rename title in civility --- Entity/Civility.php | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Entity/Civility.php 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; + } +} -- 2.41.0