X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/74d7efbf5c85d008f908480bbded253d6bc3775e..dc0b6de360fa7dd8b3a2146e99fcd0ab6da6a6de:/Entity/Civility.php

diff --git a/Entity/Civility.php b/Entity/Civility.php
index 86030ed..5e111c1 100644
--- a/Entity/Civility.php
+++ b/Entity/Civility.php
@@ -1,41 +1,20 @@
-<?php
+<?php declare(strict_types=1);
 
-namespace Rapsys\AirBundle\Entity;
-
-class Civility extends \Rapsys\UserBundle\Entity\Civility {
-	/**
-	 * @var string
-	 */
-	private $short;
+/*
+ * This file is part of the Rapsys AirBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * 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;
-	}
+/**
+ * {@inheritdoc}
+ */
+class Civility extends BaseCivility {
 }