X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/f41a3bf32b6978f70cda296b9f8168510457db8d..d5407e3dc6ae49b3ef58b7609976b3305ca77859:/Entity/Civility.php diff --git a/Entity/Civility.php b/Entity/Civility.php index 86030ed..d8461d7 100644 --- a/Entity/Civility.php +++ b/Entity/Civility.php @@ -1,41 +1,17 @@ - + * + * for the full copyright and license information, please view the license + * file that was distributed with this source code. + */ - /** - * Set short - * - * @param string $short - * - * @return Civility - */ - public function setShort($short) { - $this->short = $short; - - return $this; - } +namespace Rapsys\AirBundle\Entity; - /** - * Get short - * - * @return string - */ - public function getShort() { - return $this->short; - } +use Rapsys\UserBundle\Entity\Civility as BaseCivility; - /** - * Returns a string representation of the civility - * - * @return string - */ - public function __toString(): string { - return $this->short; - } +class Civility extends BaseCivility { }