Rapsys Git
/
airbundle
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Use pseudonym instead of full name
[airbundle]
/
Entity
/
Civility.php
diff --git
a/Entity/Civility.php
b/Entity/Civility.php
index 86030ed2fa55bd82cd4b3fa667910e19e5e489b6..d8461d7f5a021142075bea9ea0b164fb209451db 100644
(file)
--- a/
Entity/Civility.php
+++ b/
Entity/Civility.php
@@
-1,41
+1,17
@@
-<?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 packbundle 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;
- }
+class Civility extends BaseCivility {
}
}