rename page to article

This commit is contained in:
ghost 2023-10-10 14:43:44 +03:00
parent 649838d4ee
commit c747166a30
43 changed files with 597 additions and 597 deletions

View file

@ -23,7 +23,7 @@ class Activity
private ?int $userId = null;
#[ORM\Column(nullable: true)]
private ?int $pageId = null;
private ?int $articleId = null;
public function getId(): ?int
{
@ -80,14 +80,14 @@ class Activity
return $this;
}
public function getPageId(): ?int
public function getArticleId(): ?int
{
return $this->pageId;
return $this->articleId;
}
public function setPageId(?int $pageId): static
public function setArticleId(?int $articleId): static
{
$this->pageId = $pageId;
$this->articleId = $articleId;
return $this;
}