diff options
Diffstat (limited to 'src/WallabagBundle/Entity/Config.php')
-rw-r--r-- | src/WallabagBundle/Entity/Config.php | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/src/WallabagBundle/Entity/Config.php b/src/WallabagBundle/Entity/Config.php deleted file mode 100644 index 8b692cef..00000000 --- a/src/WallabagBundle/Entity/Config.php +++ /dev/null | |||
@@ -1,95 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace WallabagBundle\Entity; | ||
4 | |||
5 | use Doctrine\ORM\Mapping as ORM; | ||
6 | |||
7 | /** | ||
8 | * Config | ||
9 | * | ||
10 | * @ORM\Table(name="config") | ||
11 | * @ORM\Entity | ||
12 | */ | ||
13 | class Config | ||
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="name", type="string", nullable=true) | ||
28 | */ | ||
29 | private $name; | ||
30 | |||
31 | /** | ||
32 | * @var string | ||
33 | * | ||
34 | * @ORM\Column(name="value", type="blob", nullable=true) | ||
35 | */ | ||
36 | private $value; | ||
37 | |||
38 | |||
39 | |||
40 | /** | ||
41 | * Get id | ||
42 | * | ||
43 | * @return integer | ||
44 | */ | ||
45 | public function getId() | ||
46 | { | ||
47 | return $this->id; | ||
48 | } | ||
49 | |||
50 | /** | ||
51 | * Set name | ||
52 | * | ||
53 | * @param string $name | ||
54 | * @return Config | ||
55 | */ | ||
56 | public function setName($name) | ||
57 | { | ||
58 | $this->name = $name; | ||
59 | |||
60 | return $this; | ||
61 | } | ||
62 | |||
63 | /** | ||
64 | * Get name | ||
65 | * | ||
66 | * @return string | ||
67 | */ | ||
68 | public function getName() | ||
69 | { | ||
70 | return $this->name; | ||
71 | } | ||
72 | |||
73 | /** | ||
74 | * Set value | ||
75 | * | ||
76 | * @param string $value | ||
77 | * @return Config | ||
78 | */ | ||
79 | public function setValue($value) | ||
80 | { | ||
81 | $this->value = $value; | ||
82 | |||
83 | return $this; | ||
84 | } | ||
85 | |||
86 | /** | ||
87 | * Get value | ||
88 | * | ||
89 | * @return string | ||
90 | */ | ||
91 | public function getValue() | ||
92 | { | ||
93 | return $this->value; | ||
94 | } | ||
95 | } | ||