]> Raphaël G. Git Repositories - airbundle/commitdiff
Rename title in civility
authorRaphaël Gertz <git@rapsys.eu>
Tue, 23 Feb 2021 23:57:58 +0000 (00:57 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Tue, 23 Feb 2021 23:57:58 +0000 (00:57 +0100)
Entity/Title.php [deleted file]

diff --git a/Entity/Title.php b/Entity/Title.php
deleted file mode 100644 (file)
index e6cc9e8..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-
-namespace Rapsys\AirBundle\Entity;
-
-class Title extends \Rapsys\UserBundle\Entity\Title {
-       /**
-        * @var string
-        */
-       private $short;
-
-       /**
-        * Set short
-        *
-        * @param string $short
-        *
-        * @return Title
-        */
-       public function setShort($short) {
-               $this->short = $short;
-
-               return $this;
-       }
-
-       /**
-        * Get short
-        *
-        * @return string
-        */
-       public function getShort() {
-               return $this->short;
-       }
-
-       /**
-        * Returns a string representation of the title
-        *
-        * @return string
-        */
-       public function __toString(): string {
-               return $this->short;
-       }
-}