aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Tags.php~
diff options
context:
space:
mode:
authorJeremy <jeremy.benoist@gmail.com>2015-02-06 14:26:37 +0100
committerJeremy <jeremy.benoist@gmail.com>2015-02-06 14:26:37 +0100
commit02b225a82e9194df50097946e559c677942e018c (patch)
treea844c58da04b48568a7e5877e08c10fb4798109a /src/Wallabag/CoreBundle/Entity/Tags.php~
parent15d33c24dca0fc5b8b783eb68bd83f286481f364 (diff)
downloadwallabag-02b225a82e9194df50097946e559c677942e018c.tar.gz
wallabag-02b225a82e9194df50097946e559c677942e018c.tar.zst
wallabag-02b225a82e9194df50097946e559c677942e018c.zip
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}