diff options
Diffstat (limited to 'src/Wallabag/UserBundle/Entity/Group.php')
-rw-r--r-- | src/Wallabag/UserBundle/Entity/Group.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Wallabag/UserBundle/Entity/Group.php b/src/Wallabag/UserBundle/Entity/Group.php new file mode 100644 index 00000000..9145959d --- /dev/null +++ b/src/Wallabag/UserBundle/Entity/Group.php | |||
@@ -0,0 +1,20 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\UserBundle\Entity; | ||
4 | |||
5 | use FOS\UserBundle\Model\Group as BaseGroup; | ||
6 | use Doctrine\ORM\Mapping as ORM; | ||
7 | |||
8 | /** | ||
9 | * @ORM\Entity | ||
10 | * @ORM\Table(name="`group`") | ||
11 | */ | ||
12 | class Group extends BaseGroup | ||
13 | { | ||
14 | /** | ||
15 | * @ORM\Id | ||
16 | * @ORM\Column(type="integer") | ||
17 | * @ORM\GeneratedValue(strategy="AUTO") | ||
18 | */ | ||
19 | protected $id; | ||
20 | } | ||