aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/InternalSetting.php
blob: 419a2778eef46992d760afb0dd4daf1cef97a03c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php

namespace Wallabag\CoreBundle\Entity;

use Craue\ConfigBundle\Entity\BaseSetting;
use Doctrine\ORM\Mapping as ORM;

/**
 * Internal Setting.
 *
 * @ORM\Entity(repositoryClass="Craue\ConfigBundle\Repository\SettingRepository")
 * @ORM\Table(name="internal_setting")
 * @ORM\AttributeOverrides({
 *      @ORM\AttributeOverride(name="name",
 *          column=@ORM\Column(
 *              name     = "name",
 *              length   = 191
 *          )
 *      ),
 *      @ORM\AttributeOverride(name="section",
 *          column=@ORM\Column(
 *              name     = "section",
 *              length   = 191
 *          )
 *      )
 * })
 */
class InternalSetting extends BaseSetting
{
    /**
     * @var string|null
     *
     * @ORM\Column(name="value", type="string", nullable=true, length=191)
     */
    protected $value;
}