| Total Complexity | 4 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class Settings |
||
| 16 | { |
||
| 17 | use EntityIdTrait; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @ORM\Column(type="string", length=191, unique=true) |
||
| 21 | */ |
||
| 22 | private ?string $setting_name; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @ORM\Column(type="text", nullable=true) |
||
| 26 | */ |
||
| 27 | private ?string $setting_value; |
||
| 28 | |||
| 29 | public function getSettingName(): ?string |
||
| 30 | { |
||
| 31 | return $this->setting_name; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function setSettingName(string $setting_name): self |
||
| 39 | } |
||
| 40 | |||
| 41 | public function getSettingValue(): ?string |
||
| 44 | } |
||
| 45 | |||
| 46 | public function setSettingValue(?string $setting_value): self |
||
| 53 |