]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Entity/InternalSetting.php
419a2778eef46992d760afb0dd4daf1cef97a03c
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Entity / InternalSetting.php
1 <?php
2
3 namespace Wallabag\CoreBundle\Entity;
4
5 use Craue\ConfigBundle\Entity\BaseSetting;
6 use Doctrine\ORM\Mapping as ORM;
7
8 /**
9 * Internal Setting.
10 *
11 * @ORM\Entity(repositoryClass="Craue\ConfigBundle\Repository\SettingRepository")
12 * @ORM\Table(name="internal_setting")
13 * @ORM\AttributeOverrides({
14 * @ORM\AttributeOverride(name="name",
15 * column=@ORM\Column(
16 * name = "name",
17 * length = 191
18 * )
19 * ),
20 * @ORM\AttributeOverride(name="section",
21 * column=@ORM\Column(
22 * name = "section",
23 * length = 191
24 * )
25 * )
26 * })
27 */
28 class InternalSetting extends BaseSetting
29 {
30 /**
31 * @var string|null
32 *
33 * @ORM\Column(name="value", type="string", nullable=true, length=191)
34 */
35 protected $value;
36 }