]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Entity/Civility.php
Remove short title
[airbundle] / Entity / Civility.php
index 1c5466de7572728068980811283a605c1eecfdd7..d8461d7f5a021142075bea9ea0b164fb209451db 100644 (file)
@@ -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;
-       }
 }