From f3979ea4e65ed670ab5cf9c35af2842327b82d85 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Fri, 10 Nov 2023 12:59:29 +0100 Subject: [PATCH] Add group entity --- Entity/Group.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Entity/Group.php diff --git a/Entity/Group.php b/Entity/Group.php new file mode 100644 index 0000000..9a4c651 --- /dev/null +++ b/Entity/Group.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\Group as BaseGroup; + +class Group extends BaseGroup { +} -- 2.41.0