From: Raphaël Gertz Date: Fri, 10 Nov 2023 11:59:11 +0000 (+0100) Subject: Add civility entity X-Git-Tag: 0.1~24 X-Git-Url: https://git.rapsys.eu/blogbundle/commitdiff_plain/385e63c2dabe340d53b5664f1f2f1d5720032b27 Add civility entity --- 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 { +}