X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/9aad88c45d93dadacd35176364b56df4734c017b..HEAD:/Entity/Civility.php diff --git a/Entity/Civility.php b/Entity/Civility.php index 1c5466d..5e111c1 100644 --- a/Entity/Civility.php +++ b/Entity/Civility.php @@ -1,11 +1,11 @@ + * (c) Raphaël Gertz * - * 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; - } }