src/Entity/ConfigurationType.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use ApiPlatform\Metadata\Get;
  5. use App\Model\Entity;
  6. use App\Repository\ConfigurationTypeRepository;
  7. use Doctrine\Common\Collections\ArrayCollection;
  8. use Doctrine\Common\Collections\Collection;
  9. use Doctrine\ORM\Mapping as ORM;
  10. use Symfony\Component\Serializer\Annotation\Groups;
  11. #[ORM\Entity(repositoryClassConfigurationTypeRepository::class)]
  12. #[ApiResource(
  13.     operations: [new Get(),],
  14.     normalizationContext: ['groups' => ['identifier:read''configuration_type:read']]
  15. )]
  16. class ConfigurationType extends Entity
  17. {
  18.     public const MOBILIER 'MOBILIER';
  19.     public const TRANSPORT "TRANSPORT";
  20.     public const PROJECT_DISCOVERY "PROJECT_DISCOVERY";
  21.     #[ORM\Column(length100)]
  22.     #[Groups(['configuration:read''configuration_type:read'])]
  23.     private ?string $name null;
  24.     #[ORM\Column(length30)]
  25.     #[Groups(['configuration:read''configuration_type:read'])]
  26.     private ?string $code null;
  27.     #[ORM\OneToMany(mappedBy'type'targetEntityQuestion::class, orphanRemovaltrue)]
  28.     #[ORM\OrderBy(['position' => 'asc'])]
  29.     #[Groups(['configuration:read''configuration_type:read'])]
  30.     private Collection $questions;
  31.     public function __construct()
  32.     {
  33.         $this->questions = new ArrayCollection();
  34.     }
  35.     public function getName(): ?string
  36.     {
  37.         return $this->name;
  38.     }
  39.     public function setName(string $name): self
  40.     {
  41.         $this->name $name;
  42.         return $this;
  43.     }
  44.     public function getCode(): ?string
  45.     {
  46.         return $this->code;
  47.     }
  48.     public function setCode(string $code): self
  49.     {
  50.         $this->code $code;
  51.         return $this;
  52.     }
  53.     /**
  54.      * @return Collection<int, Question>
  55.      */
  56.     public function getQuestions(): Collection
  57.     {
  58.         return $this->questions;
  59.     }
  60.     public function addQuestion(Question $question): self
  61.     {
  62.         if (!$this->questions->contains($question)) {
  63.             $this->questions->add($question);
  64.             $question->setType($this);
  65.         }
  66.         return $this;
  67.     }
  68.     public function removeQuestion(Question $question): self
  69.     {
  70.         if ($this->questions->removeElement($question)) {
  71.             // set the owning side to null (unless already changed)
  72.             if ($question->getType() === $this) {
  73.                 $question->setType(null);
  74.             }
  75.         }
  76.         return $this;
  77.     }
  78. }