From: Raphaƫl Gertz <git@rapsys.eu>
Date: Sat, 28 Aug 2021 04:52:41 +0000 (+0200)
Subject: Remove short title
X-Git-Tag: 0.2.0~56
X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/f5740340cff3939833c86737b1fbd3fc9ec4a318

Remove short title
---

diff --git a/Entity/Civility.php b/Entity/Civility.php
index 1c5466d..d8461d7 100644
--- a/Entity/Civility.php
+++ b/Entity/Civility.php
@@ -14,39 +14,4 @@ namespace Rapsys\AirBundle\Entity;
 use Rapsys\UserBundle\Entity\Civility as BaseCivility;
 
 class Civility extends BaseCivility {
-	/**
-	 * @var string
-	 */
-	private $short;
-
-	/**
-	 * Set short
-	 *
-	 * @param string $short
-	 *
-	 * @return Civility
-	 */
-	public function setShort(string $short): Civility {
-		$this->short = $short;
-
-		return $this;
-	}
-
-	/**
-	 * Get short
-	 *
-	 * @return string
-	 */
-	public function getShort(): string {
-		return $this->short;
-	}
-
-	/**
-	 * Returns a string representation of the civility
-	 *
-	 * @return string
-	 */
-	public function __toString(): string {
-		return $this->short;
-	}
 }