X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/11b73d8d752711b0e23e39af3086fa55d2a96287..74d7efbf5c85d008f908480bbded253d6bc3775e:/Entity/Civility.php?ds=sidebyside 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; + } +}