1 <?php
declare(strict_types
=1);
4 * this file is part of the rapsys packbundle package.
6 * (c) raphaël gertz <symfony@rapsys.eu>
8 * for the full copyright and license information, please view the license
9 * file that was distributed with this source code.
12 namespace Rapsys\AirBundle\Entity
;
14 use Rapsys\UserBundle\Entity\Civility
as BaseCivility
;
16 class Civility
extends BaseCivility
{
25 * @param string $short
29 public function setShort(string $short): Civility
{
30 $this->short
= $short;
40 public function getShort(): string {
45 * Returns a string representation of the civility
49 public function __toString(): string {