]> Raphaël G. Git Repositories - blogbundle/commitdiff
Add group entity
authorRaphaël Gertz <git@rapsys.eu>
Fri, 10 Nov 2023 11:59:29 +0000 (12:59 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Fri, 10 Nov 2023 11:59:29 +0000 (12:59 +0100)
Entity/Group.php [new file with mode: 0644]

diff --git a/Entity/Group.php b/Entity/Group.php
new file mode 100644 (file)
index 0000000..9a4c651
--- /dev/null
@@ -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\Group as BaseGroup;
+
+class Group extends BaseGroup {
+}