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