src/Entity/Sitesettings.php line 10
<?phpnamespace App\Entity;use App\Repository\SitesettingsRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: SitesettingsRepository::class)]class Sitesettings{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column(type: 'integer')]private $id;#[ORM\Column(type: 'string', length: 255)]private $title;#[ORM\Column(type: 'string', nullable: false)]private $label;#[ORM\Column(type: 'text', nullable: true)]private $settings;public function getId(): ?int{return $this->id;}public function getTitle(): ?string{return $this->title;}public function setTitle(string $title): self{$this->title = $title;return $this;}public function getLabel(): ?string{return $this->label;}public function setLabel(string $label): self{$this->label = $label;return $this;}public function getSettings(): ?string{return $this->settings;}public function setSettings(?string $settings): self{$this->settings = $settings;return $this;}}