src/Entity/Product/Item.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Product;
  3. use App\Repository\Product\ItemRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ItemRepository::class)
  7.  * @ORM\Table(name="product_item")
  8.  */
  9. class Item
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="text")
  19.      */
  20.     private $description;
  21.     /**
  22.      * @ORM\Column(type="integer")
  23.      */
  24.     private $count;
  25.     /**
  26.      * @ORM\ManyToOne(targetEntity=Product::class, inversedBy="items")
  27.      * @ORM\JoinColumn(nullable=false)
  28.      */
  29.     private $product;
  30.     public function getId(): ?int
  31.     {
  32.         return $this->id;
  33.     }
  34.     public function getDescription(): ?string
  35.     {
  36.         return $this->description;
  37.     }
  38.     public function setDescription(string $description): self
  39.     {
  40.         $this->description $description;
  41.         return $this;
  42.     }
  43.     public function getCount(): ?int
  44.     {
  45.         return $this->count;
  46.     }
  47.     public function setCount(int $count): self
  48.     {
  49.         $this->count $count;
  50.         return $this;
  51.     }
  52.     public function getProduct(): ?Product
  53.     {
  54.         return $this->product;
  55.     }
  56.     public function setProduct(?Product $product): self
  57.     {
  58.         $this->product $product;
  59.         return $this;
  60.     }
  61.     public function __toString()
  62.     {
  63.         return $this->description ' X ' $this->count;
  64.     }
  65. }