src/Entity/Flagging.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FlaggingRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=FlaggingRepository::class)
  7.  */
  8. class Flagging
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="smallint")
  18.      */
  19.     private $fid;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $entityType;
  24.     /**
  25.      * @ORM\Column(type="integer")
  26.      */
  27.     private $entityId;
  28.     /**
  29.      * @ORM\Column(type="integer")
  30.      */
  31.     private $uid;
  32.     /**
  33.      * @ORM\Column(type="integer")
  34.      */
  35.     private $sid;
  36.     /**
  37.      * @ORM\Column(type="datetime")
  38.      */
  39.     private $created;
  40.     public function getId(): ?int
  41.     {
  42.         return $this->id;
  43.     }
  44.     public function getFid(): ?int
  45.     {
  46.         return $this->fid;
  47.     }
  48.     public function setFid(int $fid): self
  49.     {
  50.         $this->fid $fid;
  51.         return $this;
  52.     }
  53.     public function getEntityType(): ?string
  54.     {
  55.         return $this->entityType;
  56.     }
  57.     public function setEntityType(string $entityType): self
  58.     {
  59.         $this->entityType $entityType;
  60.         return $this;
  61.     }
  62.     public function getEntityId(): ?int
  63.     {
  64.         return $this->entityId;
  65.     }
  66.     public function setEntityId(int $entityId): self
  67.     {
  68.         $this->entityId $entityId;
  69.         return $this;
  70.     }
  71.     public function getUid(): ?int
  72.     {
  73.         return $this->uid;
  74.     }
  75.     public function setUid(int $uid): self
  76.     {
  77.         $this->uid $uid;
  78.         return $this;
  79.     }
  80.     public function getSid(): ?int
  81.     {
  82.         return $this->sid;
  83.     }
  84.     public function setSid(int $sid): self
  85.     {
  86.         $this->sid $sid;
  87.         return $this;
  88.     }
  89.     public function getCreated(): ?\DateTimeInterface
  90.     {
  91.         return $this->created;
  92.     }
  93.     public function setCreated(\DateTimeInterface $created): self
  94.     {
  95.         $this->created $created;
  96.         return $this;
  97.     }
  98. }