mirror of
https://github.com/wallabag/wallabag.git
synced 2025-04-26 11:44:43 +00:00
24 lines
526 B
PHP
24 lines
526 B
PHP
<?php
|
|
|
|
namespace Wallabag\Entity;
|
|
|
|
use Craue\ConfigBundle\Entity\BaseSetting;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* InternalSetting.
|
|
*
|
|
* Re-define setting so we can override length attribute to fix utf8mb4 issue.
|
|
*
|
|
* @ORM\Entity(repositoryClass="Craue\ConfigBundle\Repository\SettingRepository")
|
|
* @ORM\Table(name="`internal_setting`")
|
|
*/
|
|
class InternalSetting extends BaseSetting
|
|
{
|
|
/**
|
|
* @var string|null
|
|
*
|
|
* @ORM\Column(name="value", type="string", nullable=true)
|
|
*/
|
|
protected $value;
|
|
}
|