]> Raphaël G. Git Repositories - airbundle/blobdiff - Entity/Civility.php
Rename rapsysair:calendar2 command to rapsysair:calendar
[airbundle] / Entity / Civility.php
index 1c5466de7572728068980811283a605c1eecfdd7..5e111c11ee1ca3c108c4c85edc4d540237f28429 100644 (file)
@@ -1,11 +1,11 @@
 <?php declare(strict_types=1);
 
 /*
- * this file is part of the rapsys packbundle package.
+ * This file is part of the Rapsys AirBundle package.
  *
- * (c) raphaël gertz <symfony@rapsys.eu>
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
  *
- * for the full copyright and license information, please view the license
+ * For the full copyright and license information, please view the LICENSE
  * file that was distributed with this source code.
  */
 
@@ -13,40 +13,8 @@ namespace Rapsys\AirBundle\Entity;
 
 use Rapsys\UserBundle\Entity\Civility as BaseCivility;
 
+/**
+ * {@inheritdoc}
+ */
 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;
-       }
 }