src/Entity/Note.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\User;
  4. use App\Entity\Movie;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use App\Repository\NoteRepository;
  7. /**
  8.  * @ORM\Entity(repositoryClass=NoteRepository::class)
  9.  */
  10. class Note
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255, nullable=true)
  20.      */
  21.     private $noteDesc;
  22.     /**
  23.      * @ORM\Column(type="integer", nullable=true)
  24.      */
  25.     private $note;
  26.     /**
  27.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="notes")
  28.      * @ORM\JoinColumn(nullable=false)
  29.      */
  30.     private $idUser;
  31.     /**
  32.      * @ORM\ManyToOne(targetEntity=Movie::class, inversedBy="notes")
  33.      * @ORM\JoinColumn(nullable=false)
  34.      */
  35.     private $idMovie;
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getNoteDesc(): ?string
  41.     {
  42.         return $this->noteDesc;
  43.     }
  44.     public function setNoteDesc(?string $noteDesc): self
  45.     {
  46.         $this->noteDesc $noteDesc;
  47.         return $this;
  48.     }
  49.     public function getNote(): ?int
  50.     {
  51.         return $this->note;
  52.     }
  53.     public function setNote(?int $note): self
  54.     {
  55.         $this->note $note;
  56.         return $this;
  57.     }
  58.     public function getIdUser(): ?User
  59.     {
  60.         return $this->idUser;
  61.     }
  62.     public function setIdUser(?User $idUser): self
  63.     {
  64.         $this->idUser $idUser;
  65.         return $this;
  66.     }
  67.     public function getIdMovie(): ?Movie
  68.     {
  69.         return $this->idMovie;
  70.     }
  71.     public function setIdMovie(?Movie $idMovie): self
  72.     {
  73.         $this->idMovie $idMovie;
  74.         return $this;
  75.     }
  76. }