src/Entity/Product.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductRepository;
  4. use Boab\CmsBundle\Entity\Content;
  5. use Boab\EcommerceBundle\Entity\ProductLineInterface;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * @ORM\Entity(repositoryClass=ProductRepository::class)
  10.  */
  11. class Product extends Content implements ProductInterfaceProductLineInterface
  12. {
  13.     /**
  14.      * @ORM\Column(type="decimal", precision=10, scale=0)
  15.      */
  16.     private $price;
  17.     public function getId(): ?int
  18.     {
  19.         return $this->id;
  20.     }
  21.     public function getPrice(): ?string
  22.     {
  23.         return $this->price;
  24.     }
  25.     public function setPrice(string $price): self
  26.     {
  27.         $this->price $price;
  28.         return $this;
  29.     }
  30. }