mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
fix: update table joins
This commit is contained in:
@@ -12,10 +12,6 @@ use Doctrine\ORM\Mapping as ORM;
|
||||
class Domain
|
||||
{
|
||||
#[ORM\Id]
|
||||
#[ORM\GeneratedValue]
|
||||
#[ORM\Column]
|
||||
private ?int $id = null;
|
||||
|
||||
#[ORM\Column(length: 255)]
|
||||
private ?string $ldhname = null;
|
||||
|
||||
@@ -46,11 +42,6 @@ class Domain
|
||||
$this->domainEntities = new ArrayCollection();
|
||||
}
|
||||
|
||||
public function getId(): ?int
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
public function getLdhname(): ?string
|
||||
{
|
||||
return $this->ldhname;
|
||||
|
||||
Reference in New Issue
Block a user