src/Entity/ShopCart.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ShopCartRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassShopCartRepository::class)]
  6. class ShopCart
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'shopCartItems')]
  13.     #[ORM\JoinColumn(nullablefalse)]
  14.     private ?User $user null;
  15.     #[ORM\ManyToOne]
  16.     #[ORM\JoinColumn(nullablefalse)]
  17.     private ?Product $product null;
  18.     #[ORM\Column]
  19.     private ?int $count null;
  20.     #[ORM\ManyToOne(inversedBy'shopCartItem')]
  21.     #[ORM\JoinColumn(nullablefalse)]
  22.     private ?ProductsSizes $size null;
  23.     public function getId(): ?int
  24.     {
  25.         return $this->id;
  26.     }
  27.     public function getUser(): ?User
  28.     {
  29.         return $this->user;
  30.     }
  31.     public function setUser(?User $user): self
  32.     {
  33.         $this->user $user;
  34.         return $this;
  35.     }
  36.     public function getProduct(): ?Product
  37.     {
  38.         return $this->product;
  39.     }
  40.     public function setProduct(?Product $product): self
  41.     {
  42.         $this->product $product;
  43.         return $this;
  44.     }
  45.     public function getCount(): ?int
  46.     {
  47.         return $this->count;
  48.     }
  49.     public function setCount(int $count): self
  50.     {
  51.         $this->count $count;
  52.         return $this;
  53.     }
  54.     public function getSize(): ?ProductsSizes
  55.     {
  56.         return $this->size;
  57.     }
  58.     public function setSize(?ProductsSizes $size): self
  59.     {
  60.         $this->size $size;
  61.         return $this;
  62.     }
  63. }