src/Entity/Model.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ModelRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassModelRepository::class)]
  8. class Model
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $naam null;
  16.     #[ORM\OneToMany(mappedBy'model'targetEntityModelonderdeel::class, orphanRemovaltrue)]
  17.     private Collection $modelonderdelen;
  18.     public function __construct()
  19.     {
  20.         $this->modelonderdelen = new ArrayCollection();
  21.     }
  22.     public function __toString() : string
  23.     {
  24.         return $this->naam;
  25.     }
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getNaam(): ?string
  31.     {
  32.         return $this->naam;
  33.     }
  34.     public function setNaam(string $naam): static
  35.     {
  36.         $this->naam $naam;
  37.         return $this;
  38.     }
  39.     /**
  40.      * @return Collection<int, Modelonderdeel>
  41.      */
  42.     public function getModelonderdelen(): Collection
  43.     {
  44.         return $this->modelonderdelen;
  45.     }
  46.     public function addModelonderdelen(Modelonderdeel $modelonderdelen): static
  47.     {
  48.         if (!$this->modelonderdelen->contains($modelonderdelen)) {
  49.             $this->modelonderdelen->add($modelonderdelen);
  50.             $modelonderdelen->setModel($this);
  51.         }
  52.         return $this;
  53.     }
  54.     public function removeModelonderdelen(Modelonderdeel $modelonderdelen): static
  55.     {
  56.         if ($this->modelonderdelen->removeElement($modelonderdelen)) {
  57.             // set the owning side to null (unless already changed)
  58.             if ($modelonderdelen->getModel() === $this) {
  59.                 $modelonderdelen->setModel(null);
  60.             }
  61.         }
  62.         return $this;
  63.     }
  64. }