fix methods position

This commit is contained in:
ghost 2023-10-09 16:36:35 +03:00
parent 5a940541ee
commit 6effb4cad2

View File

@ -13,6 +13,15 @@ class Page
#[ORM\Column]
private ?int $id = null;
#[ORM\Column]
private ?int $userId = null;
#[ORM\Column]
private ?int $added = null;
#[ORM\Column]
private ?bool $approved = null;
public function getId(): ?int
{
return $this->id;
@ -25,15 +34,6 @@ class Page
return $this;
}
#[ORM\Column]
private ?int $userId = null;
#[ORM\Column]
private ?int $added = null;
#[ORM\Column]
private ?bool $approved = null;
public function getUserId(): ?int
{
return $this->userId;