src/Entity/Discount.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DiscountRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Mapping\Annotation as Gedmo;
  8. /**
  9.  * @ORM\Entity(repositoryClass=DiscountRepository::class)
  10.  */
  11. class Discount
  12. {
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=255)
  21.      */
  22.     private $title;
  23.     /**
  24.      * @ORM\Column(type="float")
  25.      */
  26.     private $percentage;
  27.     /**
  28.      * @ORM\Column(type="string", length=255)
  29.      */
  30.     private $type;
  31.     /**
  32.      * @ORM\Column(type="integer", nullable=true)
  33.      */
  34.     private $minimum;
  35.     /**
  36.      * @ORM\Column(type="integer", nullable=true)
  37.      */
  38.     private $maximum;
  39.     /**
  40.      * @ORM\Column(type="boolean", options={"default":"1"})
  41.      */
  42.     private $statut true;
  43.     /**
  44.      * @ORM\OneToMany(targetEntity=Order::class, mappedBy="discount")
  45.      */
  46.     private $orders;
  47.     /**
  48.      * @ORM\Column(type="datetime_immutable")
  49.      * @Gedmo\Timestampable(on="create")
  50.      */
  51.     private $created_at;
  52.     /**
  53.      * @ORM\Column(type="datetime_immutable")
  54.      * @Gedmo\Timestampable(on="update")
  55.      */
  56.     private $updated_at;
  57.     public function __construct()
  58.     {
  59.         $this->orders = new ArrayCollection();
  60.     }
  61.     public function getId(): ?int
  62.     {
  63.         return $this->id;
  64.     }
  65.     public function getTitle(): ?string
  66.     {
  67.         return $this->title;
  68.     }
  69.     public function setTitle(string $title): self
  70.     {
  71.         $this->title $title;
  72.         return $this;
  73.     }
  74.     public function getPercentage(): ?float
  75.     {
  76.         return $this->percentage;
  77.     }
  78.     public function setPercentage(float $percentage): self
  79.     {
  80.         $this->percentage $percentage;
  81.         return $this;
  82.     }
  83.     public function getType(): ?string
  84.     {
  85.         return $this->type;
  86.     }
  87.     public function setType(string $type): self
  88.     {
  89.         $this->type $type;
  90.         return $this;
  91.     }
  92.     public function getMinimum(): ?string
  93.     {
  94.         return $this->minimum;
  95.     }
  96.     public function setMinimum(string $minimum): self
  97.     {
  98.         $this->minimum $minimum;
  99.         return $this;
  100.     }
  101.     public function getMaximum(): ?string
  102.     {
  103.         return $this->maximum;
  104.     }
  105.     public function setMaximum(string $maximum): self
  106.     {
  107.         $this->maximum $maximum;
  108.         return $this;
  109.     }
  110.     public function isStatut(): ?bool
  111.     {
  112.         return $this->statut;
  113.     }
  114.     public function setStatut(bool $statut): self
  115.     {
  116.         $this->statut $statut;
  117.         return $this;
  118.     }
  119.     /**
  120.      * @return Collection<int, Order>
  121.      */
  122.     public function getOrders(): Collection
  123.     {
  124.         return $this->orders;
  125.     }
  126.     public function addOrder(Order $order): self
  127.     {
  128.         if (!$this->orders->contains($order)) {
  129.             $this->orders[] = $order;
  130.             $order->setDiscount($this);
  131.         }
  132.         return $this;
  133.     }
  134.     public function removeOrder(Order $order): self
  135.     {
  136.         if ($this->orders->removeElement($order)) {
  137.             // set the owning side to null (unless already changed)
  138.             if ($order->getDiscount() === $this) {
  139.                 $order->setDiscount(null);
  140.             }
  141.         }
  142.         return $this;
  143.     }
  144.     public function getCreatedAt(): ?\DateTimeImmutable
  145.     {
  146.         return $this->created_at;
  147.     }
  148.     public function setCreatedAt(\DateTimeImmutable $created_at): self
  149.     {
  150.         $this->created_at $created_at;
  151.         return $this;
  152.     }
  153.     public function getUpdatedAt(): ?\DateTimeImmutable
  154.     {
  155.         return $this->updated_at;
  156.     }
  157.     public function setUpdatedAt(\DateTimeImmutable $updated_at): self
  158.     {
  159.         $this->updated_at $updated_at;
  160.         return $this;
  161.     }
  162. }