src/Entity/VisitorCount.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\VisitorCountRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=VisitorCountRepository::class)
  7.  */
  8. class VisitorCount
  9. {
  10.     const ARTICLE_READ_TYPE 'article_read';
  11.     const TOTAL_VISITORS_TYPE 'total_type';
  12.     const NONE_TYPE 'none';
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=255, nullable=true)
  21.      */
  22.     private $category;
  23.     /**
  24.      * @ORM\Column(type="string", length=255)
  25.      */
  26.     private $type '';
  27.     /**
  28.      * @ORM\Column(type="integer", nullable=true)
  29.      */
  30.     private $counter 0;
  31.     /**
  32.      * @ORM\Column(type="integer", nullable=true)
  33.      */
  34.     private $pageId;
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getCategory(): ?string
  40.     {
  41.         return $this->category;
  42.     }
  43.     public function setCategory(string $category): self
  44.     {
  45.         $this->category $category;
  46.         return $this;
  47.     }
  48.     public function getCounter(): ?int
  49.     {
  50.         return $this->counter;
  51.     }
  52.     public function setCounter(?int $counter): self
  53.     {
  54.         $this->counter $counter;
  55.         return $this;
  56.     }
  57.     public function getPageId(): ?int
  58.     {
  59.         return $this->pageId;
  60.     }
  61.     public function setPageId(?int $pageId): self
  62.     {
  63.         $this->pageId $pageId;
  64.         return $this;
  65.     }
  66.     public function __toString()
  67.     {
  68.         return $this->getCategory();
  69.     }
  70.     public function getType(): string
  71.     {
  72.         return $this->type;
  73.     }
  74.     public function setType(string $type): void
  75.     {
  76.         $this->type $type;
  77.     }
  78. }