implement bookmarks total counter

This commit is contained in:
ghost 2023-10-08 20:37:50 +03:00
parent 3d74818303
commit 5b0a7bcb69
5 changed files with 62 additions and 52 deletions

View file

@ -22,9 +22,6 @@ class TorrentBookmark
#[ORM\Column]
private ?int $added = null;
#[ORM\Column]
private ?bool $value = null;
public function getId(): ?int
{
return $this->id;
@ -65,16 +62,4 @@ class TorrentBookmark
return $this;
}
public function isValue(): ?bool
{
return $this->value;
}
public function setValue(bool $value): static
{
$this->value = $value;
return $this;
}
}