src/Entity/Vote.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\VoteRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassVoteRepository::class)]
  8. class Vote
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\ManyToOne(inversedBy'allVotes')]
  15.     private ?Battle $battle null;
  16.     #[ORM\Column]
  17.     private ?int $voteValue null;
  18.     #[ORM\ManyToOne(inversedBy'myBattleVotes')]
  19.     private ?Client $voter null;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getBattle(): ?Battle
  25.     {
  26.         return $this->battle;
  27.     }
  28.     public function setBattle(?Battle $battle): static
  29.     {
  30.         $this->battle $battle;
  31.         return $this;
  32.     }
  33.     public function getVoteValue(): ?int
  34.     {
  35.         return $this->voteValue;
  36.     }
  37.     public function setVoteValue(int $voteValue): static
  38.     {
  39.         $this->voteValue $voteValue;
  40.         return $this;
  41.     }
  42.     public function getVoter(): ?Client
  43.     {
  44.         return $this->voter;
  45.     }
  46.     public function setVoter(?Client $voter): static
  47.     {
  48.         $this->voter $voter;
  49.         return $this;
  50.     }
  51. }