Rapsys Git
/
blogbundle
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4bcd8a8
)
Add civility entity
author
Raphaël Gertz
<git@rapsys.eu>
Fri, 10 Nov 2023 11:59:11 +0000
(12:59 +0100)
committer
Raphaël Gertz
<git@rapsys.eu>
Fri, 10 Nov 2023 11:59:11 +0000
(12:59 +0100)
Entity/Civility.php
[new file with mode: 0644]
patch
|
blob
diff --git a/Entity/Civility.php
b/Entity/Civility.php
new file mode 100644
(file)
index 0000000..
814a1aa
--- /dev/null
+++ b/
Entity/Civility.php
@@ -0,0
+1,17
@@
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys BlogBundle 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.
+ */
+
+namespace Rapsys\BlogBundle\Entity;
+
+use Rapsys\UserBundle\Entity\Civility as BaseCivility;
+
+class Civility extends BaseCivility {
+}