src/Entity/Quote/Service.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Quote;
  3. use App\Repository\Quote\ServiceRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=ServiceRepository::class)
  9.  * @ORM\Table(name="quote_service")
  10.  */
  11. class Service
  12. {
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=1024)
  21.      */
  22.     private $name;
  23.     /**
  24.      * @ORM\Column(type="text", nullable=true)
  25.      */
  26.     private $description;
  27.     /**
  28.      * @ORM\Column(type="boolean")
  29.      */
  30.     private $isDefault;
  31.     /**
  32.      * @ORM\Column(type="float", nullable=true)
  33.      */
  34.     private $defaultPrice;
  35.     /**
  36.      * @ORM\OneToMany(targetEntity=QuoteService::class, mappedBy="service")
  37.      */
  38.     private $quotes;
  39.     /**
  40.      * @ORM\Column(type="boolean")
  41.      */
  42.     private $enabled;
  43.     public function __construct()
  44.     {
  45.         $this->quotes = new ArrayCollection();
  46.     }
  47.     public function getId(): ?int
  48.     {
  49.         return $this->id;
  50.     }
  51.     public function getName(): ?string
  52.     {
  53.         return $this->name;
  54.     }
  55.     public function setName(string $name): self
  56.     {
  57.         $this->name $name;
  58.         return $this;
  59.     }
  60.     public function getDescription(): ?string
  61.     {
  62.         return $this->description;
  63.     }
  64.     public function setDescription(?string $description): self
  65.     {
  66.         $this->description $description;
  67.         return $this;
  68.     }
  69.     public function isIsDefault(): ?bool
  70.     {
  71.         return $this->isDefault;
  72.     }
  73.     public function setIsDefault(bool $isDefault): self
  74.     {
  75.         $this->isDefault $isDefault;
  76.         return $this;
  77.     }
  78.     public function getDefaultPrice(): ?float
  79.     {
  80.         return $this->defaultPrice;
  81.     }
  82.     public function setDefaultPrice(?float $defaultPrice): self
  83.     {
  84.         $this->defaultPrice $defaultPrice;
  85.         return $this;
  86.     }
  87.     /**
  88.      * @return Collection<int, QuoteService>
  89.      */
  90.     public function getQuotes(): Collection
  91.     {
  92.         return $this->quotes;
  93.     }
  94.     public function addQuote(QuoteService $quote): self
  95.     {
  96.         if (!$this->quotes->contains($quote)) {
  97.             $this->quotes[] = $quote;
  98.             $quote->setService($this);
  99.         }
  100.         return $this;
  101.     }
  102.     public function removeQuote(QuoteService $quote): self
  103.     {
  104.         if ($this->quotes->removeElement($quote)) {
  105.             // set the owning side to null (unless already changed)
  106.             if ($quote->getService() === $this) {
  107.                 $quote->setService(null);
  108.             }
  109.         }
  110.         return $this;
  111.     }
  112.     public function isEnabled(): ?bool
  113.     {
  114.         return $this->enabled;
  115.     }
  116.     public function setEnabled(bool $enabled): self
  117.     {
  118.         $this->enabled $enabled;
  119.         return $this;
  120.     }
  121. }