src/Entity/Roles.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RolesRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassRolesRepository::class)]
  8. class Roles
  9. {
  10.     const USER_ROLE_BUYER 'ROLE_BUYER';
  11.     const USER_ROLE_SELLER 'ROLE_SELLER';
  12.     const USER_ROLE_ADMIN 'ROLE_ADMIN';
  13.     const USER_ROLE_MODERATOR 'ROLE_MODERATOR';
  14.     #[ORM\Id]
  15.     #[ORM\GeneratedValue]
  16.     #[ORM\Column]
  17.     private ?int $id null;
  18.     #[ORM\Column(length50)]
  19.     private ?string $name null;
  20.     #[ORM\ManyToMany(targetEntityUser::class, inversedBy'roles')]
  21.     private Collection $user;
  22.     public function __construct()
  23.     {
  24.         $this->user = new ArrayCollection();
  25.     }
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getName(): ?string
  31.     {
  32.         return $this->name;
  33.     }
  34.     public function setName(string $name): static
  35.     {
  36.         $this->name $name;
  37.         return $this;
  38.     }
  39.     /**
  40.      * @return Collection<int, User>
  41.      */
  42.     public function getUser(): Collection
  43.     {
  44.         return $this->user;
  45.     }
  46.     public function addUser(User $user): static
  47.     {
  48.         if (!$this->user->contains($user)) {
  49.             $this->user->add($user);
  50.         }
  51.         return $this;
  52.     }
  53.     public function removeUser(User $user): static
  54.     {
  55.         $this->user->removeElement($user);
  56.         return $this;
  57.     }
  58. }