src/Entity/DeveloperSettings.php line 9
<?phpnamespace App\Entity;use App\Repository\DeveloperSettingsRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: DeveloperSettingsRepository::class)]class DeveloperSettings{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $name = null;#[ORM\Column(length: 255)]private ?string $description = null;#[ORM\Column(length: 255)]private ?string $value = null;#[ORM\Column(length: 255)]private ?string $uuid = null;public function getId(): ?int{return $this->id;}public function getName(): ?string{return $this->name;}public function setName(string $name): self{$this->name = $name;return $this;}public function getDescription(): ?string{return $this->description;}public function setDescription(string $description): self{$this->description = $description;return $this;}public function getValue(): ?string{return $this->value;}public function setValue(string $value): self{$this->value = $value;return $this;}public function getUuid(): ?string{return $this->uuid;}public function setUuid(string $uuid): self{$this->uuid = $uuid;return $this;}}