Browse Source

fix methods position

main
ghost 1 year ago
parent
commit
6effb4cad2
  1. 18
      src/Entity/Page.php

18
src/Entity/Page.php

@ -13,6 +13,15 @@ class Page @@ -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 @@ -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;

Loading…
Cancel
Save