aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/GroupBundle/Entity/Group.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-02 21:53:07 +0100
committerThomas Citharel <tcit@tcit.fr>2017-06-23 09:18:39 +0200
commitb073a0b4efe26b0f1be3239d5b7cfef2fc59202c (patch)
treeefd49455960d842726e197ce83c71d201161fad8 /src/Wallabag/GroupBundle/Entity/Group.php
parentf1900b686eb8d7c41a940eede778234ac55086e1 (diff)
downloadwallabag-b073a0b4efe26b0f1be3239d5b7cfef2fc59202c.tar.gz
wallabag-b073a0b4efe26b0f1be3239d5b7cfef2fc59202c.tar.zst
wallabag-b073a0b4efe26b0f1be3239d5b7cfef2fc59202c.zip
Created GroupBundle
Diffstat (limited to 'src/Wallabag/GroupBundle/Entity/Group.php')
-rw-r--r--src/Wallabag/GroupBundle/Entity/Group.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Wallabag/GroupBundle/Entity/Group.php b/src/Wallabag/GroupBundle/Entity/Group.php
new file mode 100644
index 00000000..57dc16d1
--- /dev/null
+++ b/src/Wallabag/GroupBundle/Entity/Group.php
@@ -0,0 +1,20 @@
1<?php
2
3namespace Wallabag\GroupBundle\Entity;
4
5use FOS\UserBundle\Model\Group as BaseGroup;
6use Doctrine\ORM\Mapping as ORM;
7
8/**
9 * @ORM\Entity
10 * @ORM\Table(name="`group`")
11 */
12class Group extends BaseGroup
13{
14 /**
15 * @ORM\Id
16 * @ORM\Column(type="integer")
17 * @ORM\GeneratedValue(strategy="AUTO")
18 */
19 protected $id;
20}