src/Entity/UserClub.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UserClubRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassUserClubRepository::class)]
  6. class UserClub
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'userClubs')]
  13.     #[ORM\JoinColumn(nullablefalseonDelete"CASCADE")]
  14.     private ?User $user null;
  15.     #[ORM\ManyToOne(inversedBy'userClubs')]
  16.     #[ORM\JoinColumn(nullablefalseonDelete"CASCADE")]
  17.     private ?Club $club null;
  18.     public function getId(): ?int
  19.     {
  20.         return $this->id;
  21.     }
  22.     public function getUser(): ?User
  23.     {
  24.         return $this->user;
  25.     }
  26.     public function setUser(?User $user): self
  27.     {
  28.         $this->user $user;
  29.         return $this;
  30.     }
  31.     public function getClub(): ?Club
  32.     {
  33.         return $this->club;
  34.     }
  35.     public function setClub(?Club $club): self
  36.     {
  37.         $this->club $club;
  38.         return $this;
  39.     }
  40. }