aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Tag.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-20 17:20:12 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-03-06 20:50:30 +0100
commit6d37a7e6c11666c2c220c9eb358a877f15bcfa0e (patch)
tree9a696a63438ccfc0b79e44f95ebb3ed9eac78ebe /src/Wallabag/CoreBundle/Entity/Tag.php
parentb3dc0749d3a007b9dced1d96b1f4000115c14784 (diff)
downloadwallabag-6d37a7e6c11666c2c220c9eb358a877f15bcfa0e.tar.gz
wallabag-6d37a7e6c11666c2c220c9eb358a877f15bcfa0e.tar.zst
wallabag-6d37a7e6c11666c2c220c9eb358a877f15bcfa0e.zip
remove dumb code
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/Tag.php')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Tag.php4
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 @@
3namespace Wallabag\CoreBundle\Entity; 3namespace Wallabag\CoreBundle\Entity;
4 4
5use Doctrine\ORM\Mapping as ORM; 5use Doctrine\ORM\Mapping as ORM;
6use 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 */
13class Tag 15class Tag
14{ 16{