From 385e63c2dabe340d53b5664f1f2f1d5720032b27 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Fri, 10 Nov 2023 12:59:11 +0100 Subject: [PATCH] Add civility entity --- Entity/Civility.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Entity/Civility.php diff --git a/Entity/Civility.php b/Entity/Civility.php new file mode 100644 index 0000000..814a1aa --- /dev/null +++ b/Entity/Civility.php @@ -0,0 +1,17 @@ + + * + * 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 { +} -- 2.41.0