src/Entity/Expertise.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ExpertiseRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassExpertiseRepository::class)]
  8. class Expertise
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(type'integer')]
  13.     private $id;
  14.     #[ORM\Column(type'string'length255)]
  15.     private ?string $name null;
  16.     #[ORM\Column(type'integer'nullabletrueoptions: ['default' => 0])]
  17.     private ?int $ordering null;
  18.     #[ORM\Column(type'boolean'nullabletrueoptions: ['default' => 0])]
  19.     private ?bool $status null;
  20.     #[ORM\ManyToMany(targetEntityOffer::class, mappedBy'expertise')]
  21.     private Collection $offers;
  22.     public function __construct()
  23.     {
  24.         $this->offers = 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): self
  35.     {
  36.         $this->name $name;
  37.         return $this;
  38.     }
  39.     public function getOrdering(): ?int
  40.     {
  41.         return $this->ordering;
  42.     }
  43.     public function setOrdering(?int $ordering): self
  44.     {
  45.         $this->ordering $ordering;
  46.         return $this;
  47.     }
  48.     public function getStatus(): ?bool
  49.     {
  50.         return $this->status;
  51.     }
  52.     public function setStatus(?bool $status): self
  53.     {
  54.         $this->status $status;
  55.         return $this;
  56.     }
  57.     /**
  58.      * @return Collection<int, Offer>
  59.      */
  60.     public function getOffers(): Collection
  61.     {
  62.         return $this->offers;
  63.     }
  64.     public function addOffer(Offer $offer): self
  65.     {
  66.         if (!$this->offers->contains($offer)) {
  67.             $this->offers[] = $offer;
  68.             $offer->addExpertise($this);
  69.         }
  70.         return $this;
  71.     }
  72.     public function removeOffer(Offer $offer): self
  73.     {
  74.         if ($this->offers->removeElement($offer)) {
  75.             $offer->removeExpertise($this);
  76.         }
  77.         return $this;
  78.     }
  79. }