src/Entity/Params.php line 10
<?phpnamespace App\Entity;use App\Repository\ParamsRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ParamsRepository::class)]class Params{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 50, unique: true)]private ?string $param = null;#[ORM\Column(length: 254)]private ?string $value = null;#[ORM\Column]private ?int $section = null;#[ORM\Column(length: 1024, nullable: true)]private ?string $info = null;public function getId(): ?int{return $this->id;}public function getParam(): ?string{return $this->param;}public function setParam(string $param): static{$this->param = $param;return $this;}public function getValue(): ?string{return $this->value;}public function setValue(string $value): static{$this->value = $value;return $this;}public function getSection(): ?int{return $this->section;}public function setSection(int $section): static{$this->section = $section;return $this;}public function getInfo(): ?string{return $this->info;}public function setInfo(?string $info): static{$this->info = $info;return $this;}}