diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-22 17:18:56 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-22 17:18:56 +0100 |
commit | 9d50517ceaeadaba227ccdbaa43a5918abd16728 (patch) | |
tree | 5aa92beb3250895079690d7ecb8b3ddde28cda15 /src/WallabagBundle/Entity/Config.php~ | |
parent | 2b9fe72b397a239c40f8c66d83506e0e2e8d5854 (diff) | |
download | wallabag-9d50517ceaeadaba227ccdbaa43a5918abd16728.tar.gz wallabag-9d50517ceaeadaba227ccdbaa43a5918abd16728.tar.zst wallabag-9d50517ceaeadaba227ccdbaa43a5918abd16728.zip |
migrating legacy to symfony
Diffstat (limited to 'src/WallabagBundle/Entity/Config.php~')
-rw-r--r-- | src/WallabagBundle/Entity/Config.php~ | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/src/WallabagBundle/Entity/Config.php~ b/src/WallabagBundle/Entity/Config.php~ new file mode 100644 index 00000000..8b692cef --- /dev/null +++ b/src/WallabagBundle/Entity/Config.php~ | |||
@@ -0,0 +1,95 @@ | |||
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 | } | ||