src\Entity\VideoVisit.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\VideoVisitRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=VideoVisitRepository::class)
  7.  */
  8. class VideoVisit
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=200)
  18.      */
  19.     private $ip;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $user_agent;
  24.     /**
  25.      * @ORM\ManyToOne(targetEntity=User::class)
  26.      */
  27.     private $user;
  28.     /**
  29.      * @ORM\ManyToOne(targetEntity=Video::class, inversedBy="visits")
  30.      * @ORM\JoinColumn(nullable=false)
  31.      */
  32.     private $video;
  33.     /**
  34.      * @ORM\Column(type="datetime")
  35.      */
  36.     private $created_at;
  37.     public function __construct()
  38.     {
  39.         $this->created_at=new \DateTime();
  40.     }
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getIp(): ?string
  46.     {
  47.         return $this->ip;
  48.     }
  49.     public function setIp(string $ip): self
  50.     {
  51.         $this->ip $ip;
  52.         return $this;
  53.     }
  54.     public function getUserAgent(): ?string
  55.     {
  56.         return $this->user_agent;
  57.     }
  58.     public function setUserAgent(string $user_agent): self
  59.     {
  60.         $this->user_agent $user_agent;
  61.         return $this;
  62.     }
  63.     public function getUser(): ?User
  64.     {
  65.         return $this->user;
  66.     }
  67.     public function setUser(?User $user): self
  68.     {
  69.         $this->user $user;
  70.         return $this;
  71.     }
  72.     public function getVideo(): ?Video
  73.     {
  74.         return $this->video;
  75.     }
  76.     public function setVideo(?Video $video): self
  77.     {
  78.         $this->video $video;
  79.         return $this;
  80.     }
  81.     public function getCreatedAt(): ?\DateTime
  82.     {
  83.         return $this->created_at;
  84.     }
  85.     public function setCreatedAt(\DateTime $created_at): self
  86.     {
  87.         $this->created_at $created_at;
  88.         return $this;
  89.     }
  90. }