src/Entity/Level.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LevelRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassLevelRepository::class)]
  8. class Level
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $name null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $logo null;
  18.     #[ORM\OneToMany(targetEntityUser::class, mappedBy'level')]
  19.     private Collection $users;
  20.     #[ORM\OneToMany(targetEntityProject::class, mappedBy'level')]
  21.     private Collection $projects;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $description null;
  24.     public function __construct()
  25.     {
  26.         $this->users = new ArrayCollection();
  27.         $this->projects = new ArrayCollection();
  28.     }
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getName(): ?string
  34.     {
  35.         return $this->name;
  36.     }
  37.     public function setName(string $name): static
  38.     {
  39.         $this->name $name;
  40.         return $this;
  41.     }
  42.     public function getLogo(): ?string
  43.     {
  44.         return $this->logo;
  45.     }
  46.     public function setLogo(string $logo): static
  47.     {
  48.         $this->logo $logo;
  49.         return $this;
  50.     }
  51.     /**
  52.      * @return Collection<int, User>
  53.      */
  54.     public function getUsers(): Collection
  55.     {
  56.         return $this->users;
  57.     }
  58.     public function addUser(User $user): static
  59.     {
  60.         if (!$this->users->contains($user)) {
  61.             $this->users->add($user);
  62.             $user->setLevel($this);
  63.         }
  64.         return $this;
  65.     }
  66.     public function removeUser(User $user): static
  67.     {
  68.         if ($this->users->removeElement($user)) {
  69.             // set the owning side to null (unless already changed)
  70.             if ($user->getLevel() === $this) {
  71.                 $user->setLevel(null);
  72.             }
  73.         }
  74.         return $this;
  75.     }
  76.     /**
  77.      * @return Collection<int, Project>
  78.      */
  79.     public function getProjects(): Collection
  80.     {
  81.         return $this->projects;
  82.     }
  83.     public function addProject(Project $project): static
  84.     {
  85.         if (!$this->projects->contains($project)) {
  86.             $this->projects->add($project);
  87.             $project->setLevel($this);
  88.         }
  89.         return $this;
  90.     }
  91.     public function removeProject(Project $project): static
  92.     {
  93.         if ($this->projects->removeElement($project)) {
  94.             // set the owning side to null (unless already changed)
  95.             if ($project->getLevel() === $this) {
  96.                 $project->setLevel(null);
  97.             }
  98.         }
  99.         return $this;
  100.     }
  101.     function __toString()
  102.     {
  103.         return $this->getName();
  104.     }
  105.     public function getDescription(): ?string
  106.     {
  107.         return $this->description;
  108.     }
  109.     public function setDescription(?string $description): static
  110.     {
  111.         $this->description $description;
  112.         return $this;
  113.     }
  114. }