fix: identify tld type

This commit is contained in:
Maël Gangloff
2024-07-24 22:17:54 +02:00
parent 3d4f905eab
commit 416ffd4a7f
3 changed files with 53 additions and 10 deletions

View File

@@ -68,7 +68,7 @@ class Tld
#[Groups(["tld:list", "tld:item"])]
private ?bool $specification13 = null;
#[ORM\Column(length: 10, nullable: true, enumType: TldType::class)]
#[ORM\Column(length: 10, enumType: TldType::class)]
#[Groups(["tld:item"])]
private ?TldType $type = null;