diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-02-20 17:20:12 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-03-06 20:50:30 +0100 |
commit | 6d37a7e6c11666c2c220c9eb358a877f15bcfa0e (patch) | |
tree | 9a696a63438ccfc0b79e44f95ebb3ed9eac78ebe /src/Wallabag/CoreBundle/Entity | |
parent | b3dc0749d3a007b9dced1d96b1f4000115c14784 (diff) | |
download | wallabag-6d37a7e6c11666c2c220c9eb358a877f15bcfa0e.tar.gz wallabag-6d37a7e6c11666c2c220c9eb358a877f15bcfa0e.tar.zst wallabag-6d37a7e6c11666c2c220c9eb358a877f15bcfa0e.zip |
remove dumb code
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity')
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/Tag.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Tag.php b/src/Wallabag/CoreBundle/Entity/Tag.php index 963f32b1..0d7f8c2b 100644 --- a/src/Wallabag/CoreBundle/Entity/Tag.php +++ b/src/Wallabag/CoreBundle/Entity/Tag.php | |||
@@ -3,12 +3,14 @@ | |||
3 | namespace Wallabag\CoreBundle\Entity; | 3 | namespace Wallabag\CoreBundle\Entity; |
4 | 4 | ||
5 | use Doctrine\ORM\Mapping as ORM; | 5 | use Doctrine\ORM\Mapping as ORM; |
6 | use JMS\Serializer\Annotation\XmlRoot; | ||
6 | 7 | ||
7 | /** | 8 | /** |
8 | * Tag | 9 | * Tag |
9 | * | 10 | * |
11 | * @XmlRoot("tag") | ||
10 | * @ORM\Table(name="tag") | 12 | * @ORM\Table(name="tag") |
11 | * @ORM\Entity | 13 | * @ORM\Entity(repositoryClass="Wallabag\CoreBundle\Repository\TagRepository") |
12 | */ | 14 | */ |
13 | class Tag | 15 | class Tag |
14 | { | 16 | { |