aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/UsersConfig.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/UsersConfig.php~
parent15d33c24dca0fc5b8b783eb68bd83f286481f364 (diff)
downloadwallabag-02b225a82e9194df50097946e559c677942e018c.tar.gz
wallabag-02b225a82e9194df50097946e559c677942e018c.tar.zst
wallabag-02b225a82e9194df50097946e559c677942e018c.zip
Remove temporary entities
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/UsersConfig.php~')
-rw-r--r--src/Wallabag/CoreBundle/Entity/UsersConfig.php~125
1 files changed, 0 insertions, 125 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/UsersConfig.php~ b/src/Wallabag/CoreBundle/Entity/UsersConfig.php~
deleted file mode 100644
index 8af283cc..00000000
--- a/src/Wallabag/CoreBundle/Entity/UsersConfig.php~
+++ /dev/null
@@ -1,125 +0,0 @@
1<?php
2
3namespace WallabagBundle\Entity;
4
5use Doctrine\ORM\Mapping as ORM;
6
7/**
8 * UsersConfig
9 *
10 * @ORM\Table(name="users_config")
11 * @ORM\Entity
12 */
13class UsersConfig
14{
15 /**
16 * @var integer
17 *
18 * @ORM\Column(name="id", type="integer", nullable=true)
19 * @ORM\Id
20 * @ORM\GeneratedValue(strategy="IDENTITY")
21 */
22 private $id;
23
24 /**
25 * @var string
26 *
27 * @ORM\Column(name="user_id", type="decimal", precision=10, scale=0, nullable=true)
28 */
29 private $userId;
30
31 /**
32 * @var string
33 *
34 * @ORM\Column(name="name", type="text", nullable=true)
35 */
36 private $name;
37
38 /**
39 * @var string
40 *
41 * @ORM\Column(name="value", type="text", nullable=true)
42 */
43 private $value;
44
45
46
47 /**
48 * Get id
49 *
50 * @return integer
51 */
52 public function getId()
53 {
54 return $this->id;
55 }
56
57 /**
58 * Set userId
59 *
60 * @param string $userId
61 * @return UsersConfig
62 */
63 public function setUserId($userId)
64 {
65 $this->userId = $userId;
66
67 return $this;
68 }
69
70 /**
71 * Get userId
72 *
73 * @return string
74 */
75 public function getUserId()
76 {
77 return $this->userId;
78 }
79
80 /**
81 * Set name
82 *
83 * @param string $name
84 * @return UsersConfig
85 */
86 public function setName($name)
87 {
88 $this->name = $name;
89
90 return $this;
91 }
92
93 /**
94 * Get name
95 *
96 * @return string
97 */
98 public function getName()
99 {
100 return $this->name;
101 }
102
103 /**
104 * Set value
105 *
106 * @param string $value
107 * @return UsersConfig
108 */
109 public function setValue($value)
110 {
111 $this->value = $value;
112
113 return $this;
114 }
115
116 /**
117 * Get value
118 *
119 * @return string
120 */
121 public function getValue()
122 {
123 return $this->value;
124 }
125}