src/Entity/Security/Order.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Security;
  3. use App\Entity\App\Product;
  4. use App\Repository\Security\OrderRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\DBAL\Types\Types;
  8. use Doctrine\ORM\Mapping as ORM;
  9. #[ORM\Entity(repositoryClassOrderRepository::class)]
  10. #[ORM\Table(name'`order`')]
  11. class Order
  12. {
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[ORM\ManyToOne(inversedBy'orders')]
  18.     #[ORM\JoinColumn(nullablefalse)]
  19.     private ?User $user null;
  20.     #[ORM\ManyToMany(targetEntityProduct::class, inversedBy'orders')]
  21.     private Collection $products;
  22.     #[ORM\Column]
  23.     private ?\DateTimeImmutable $orderAt null;
  24.     #[ORM\Column(typeTypes::SMALLINT)]
  25.     private ?int $status null;
  26.     #[ORM\Column]
  27.     private ?float $price null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $customization null;
  30.     public function __construct()
  31.     {
  32.         $this->products = new ArrayCollection();
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getUser(): ?User
  39.     {
  40.         return $this->user;
  41.     }
  42.     public function setUser(?User $user): static
  43.     {
  44.         $this->user $user;
  45.         return $this;
  46.     }
  47.     /**
  48.      * @return Collection<int, Product>
  49.      */
  50.     public function getProducts(): Collection
  51.     {
  52.         return $this->products;
  53.     }
  54.     public function addProduct(Product $product): static
  55.     {
  56.         if (!$this->products->contains($product)) {
  57.             $this->products->add($product);
  58.         }
  59.         return $this;
  60.     }
  61.     public function removeProduct(Product $product): static
  62.     {
  63.         $this->products->removeElement($product);
  64.         return $this;
  65.     }
  66.     public function getOrderAt(): ?\DateTimeImmutable
  67.     {
  68.         return $this->orderAt;
  69.     }
  70.     public function setOrderAt(\DateTimeImmutable $orderAt): static
  71.     {
  72.         $this->orderAt $orderAt;
  73.         return $this;
  74.     }
  75.     public function getStatus(): ?int
  76.     {
  77.         return $this->status;
  78.     }
  79.     public function setStatus(int $status): static
  80.     {
  81.         $this->status $status;
  82.         return $this;
  83.     }
  84.     public function getPrice(): ?float
  85.     {
  86.         return $this->price;
  87.     }
  88.     public function setPrice(float $price): static
  89.     {
  90.         $this->price $price;
  91.         return $this;
  92.     }
  93.     public function getCustomization(): ?string
  94.     {
  95.         return $this->customization;
  96.     }
  97.     public function setCustomization(?string $customization): static
  98.     {
  99.         $this->customization $customization;
  100.         return $this;
  101.     }
  102. }