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

Loading…
Cancel
Save