aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Tags.php~
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-06 14:56:47 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-06 14:56:47 +0100
commitc64a14787dad7dafcea2ef34d5fed10f4d9a5ba0 (patch)
treea844c58da04b48568a7e5877e08c10fb4798109a /src/Wallabag/CoreBundle/Entity/Tags.php~
parent15d33c24dca0fc5b8b783eb68bd83f286481f364 (diff)
parent02b225a82e9194df50097946e559c677942e018c (diff)
downloadwallabag-c64a14787dad7dafcea2ef34d5fed10f4d9a5ba0.tar.gz
wallabag-c64a14787dad7dafcea2ef34d5fed10f4d9a5ba0.tar.zst
wallabag-c64a14787dad7dafcea2ef34d5fed10f4d9a5ba0.zip
Merge pull request #1061 from wallabag/v2-cleanup-entities
Remove temporary entities
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/Tags.php~')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Tags.php~65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Tags.php~ b/src/Wallabag/CoreBundle/Entity/Tags.php~
deleted file mode 100644
index c0c78ee5..00000000
--- a/src/Wallabag/CoreBundle/Entity/Tags.php~
+++ /dev/null
@@ -1,65 +0,0 @@
1<?php
2
3namespace WallabagBundle\Entity;
4
5use Doctrine\ORM\Mapping as ORM;
6
7/**
8 * Tags
9 *
10 * @ORM\Table(name="tags")
11 * @ORM\Entity
12 */
13class Tags
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 string
26 *
27 * @ORM\Column(name="value", type="text", nullable=true)
28 */
29 private $value;
30
31
32
33 /**
34 * Get id
35 *
36 * @return integer
37 */
38 public function getId()
39 {
40 return $this->id;
41 }
42
43 /**
44 * Set value
45 *
46 * @param string $value
47 * @return Tags
48 */
49 public function setValue($value)
50 {
51 $this->value = $value;
52
53 return $this;
54 }
55
56 /**
57 * Get value
58 *
59 * @return string
60 */
61 public function getValue()
62 {
63 return $this->value;
64 }
65}