diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-02-09 15:07:48 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-02-09 15:07:48 +0100 |
commit | 970c40bb939b0c2bfe8a4b6ac3937eb344bbcc4f (patch) | |
tree | 80a67359949a625a0cb6ca0e3191e77a9cd61a1d /src | |
parent | 653e8be4c1ae589fff52af0229338ced7b2ada2c (diff) | |
download | wallabag-970c40bb939b0c2bfe8a4b6ac3937eb344bbcc4f.tar.gz wallabag-970c40bb939b0c2bfe8a4b6ac3937eb344bbcc4f.tar.zst wallabag-970c40bb939b0c2bfe8a4b6ac3937eb344bbcc4f.zip |
restore TagsEntries
Diffstat (limited to 'src')
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/TagsEntries.php | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/TagsEntries.php b/src/Wallabag/CoreBundle/Entity/TagsEntries.php new file mode 100644 index 00000000..6b0cea0d --- /dev/null +++ b/src/Wallabag/CoreBundle/Entity/TagsEntries.php | |||
@@ -0,0 +1,93 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Entity; | ||
4 | |||
5 | use Doctrine\ORM\Mapping as ORM; | ||
6 | |||
7 | /** | ||
8 | * TagsEntries | ||
9 | * | ||
10 | * @ORM\Table(name="tags_entries") | ||
11 | * @ORM\Entity | ||
12 | */ | ||
13 | class TagsEntries | ||
14 | { | ||
15 | /** | ||
16 | * @var integer | ||
17 | * | ||
18 | * @ORM\Column(name="id", type="integer", nullable=false) | ||
19 | * @ORM\Id | ||
20 | * @ORM\GeneratedValue(strategy="IDENTITY") | ||
21 | */ | ||
22 | private $id; | ||
23 | |||
24 | /** | ||
25 | * @var integer | ||
26 | * | ||
27 | * @ORM\Column(name="entry_id", type="integer", nullable=true) | ||
28 | */ | ||
29 | private $entryId; | ||
30 | |||
31 | /** | ||
32 | * @var integer | ||
33 | * | ||
34 | * @ORM\Column(name="tag_id", type="integer", nullable=true) | ||
35 | */ | ||
36 | private $tagId; | ||
37 | |||
38 | /** | ||
39 | * Get id | ||
40 | * | ||
41 | * @return integer | ||
42 | */ | ||
43 | public function getId() | ||
44 | { | ||
45 | return $this->id; | ||
46 | } | ||
47 | |||
48 | /** | ||
49 | * Set entryId | ||
50 | * | ||
51 | * @param integer $entryId | ||
52 | * @return TagsEntries | ||
53 | */ | ||
54 | public function setEntryId($entryId) | ||
55 | { | ||
56 | $this->entryId = $entryId; | ||
57 | |||
58 | return $this; | ||
59 | } | ||
60 | |||
61 | /** | ||
62 | * Get entryId | ||
63 | * | ||
64 | * @return integer | ||
65 | */ | ||
66 | public function getEntryId() | ||
67 | { | ||
68 | return $this->entryId; | ||
69 | } | ||
70 | |||
71 | /** | ||
72 | * Set tagId | ||
73 | * | ||
74 | * @param integer $tagId | ||
75 | * @return TagsEntries | ||
76 | */ | ||
77 | public function setTagId($tagId) | ||
78 | { | ||
79 | $this->tagId = $tagId; | ||
80 | |||
81 | return $this; | ||
82 | } | ||
83 | |||
84 | /** | ||
85 | * Get tagId | ||
86 | * | ||
87 | * @return integer | ||
88 | */ | ||
89 | public function getTagId() | ||
90 | { | ||
91 | return $this->tagId; | ||
92 | } | ||
93 | } | ||