bundles/mldev-catalog-bundle/src/Entity/Composition.php line 16

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace MLDev\CatalogBundle\Entity;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Mapping\Annotation as Gedmo;
  6. use MLDev\BaseBundle\Annotation\Uploadable;
  7. use Symfony\Component\Validator\Constraints as Assert;
  8. /**
  9.  * @ORM\Table(name="MLDev_Product_Composition")
  10.  * @ORM\Entity()
  11.  */
  12. class Composition
  13. {
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\Column(name="id", type="integer")
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @ORM\Column(name="name", type="string", nullable=true)
  22.      */
  23.     private $name;
  24.     /**
  25.      * @ORM\Column(name="caption", type="string", nullable=true)
  26.      */
  27.     private $caption;
  28.     /**
  29.      * @ORM\Column(name="description", type="text", nullable=true)
  30.      */
  31.     private $description;
  32.     /**
  33.      * @ORM\Column(name="priority", type="integer", nullable=true)
  34.      */
  35.     private $priority 100;
  36.     /**
  37.      * @ORM\Column(type="string", name="image", nullable=true)
  38.      *
  39.      * @Uploadable(directoryAlias="products")
  40.      * @Assert\File(mimeTypes={"image/jpeg", "image/jpg", "image/png", "image/svg"})
  41.      */
  42.     private $image null;
  43.     public function __toString()
  44.     {
  45.         return $this->getName();
  46.     }
  47.     public function getId()
  48.     {
  49.         return $this->id;
  50.     }
  51.     public function setId($id): self
  52.     {
  53.         $this->id $id;
  54.         return $this;
  55.     }
  56.     public function getName()
  57.     {
  58.         return $this->name;
  59.     }
  60.     public function setName($name): self
  61.     {
  62.         $this->name $name;
  63.         return $this;
  64.     }
  65.     public function getCaption()
  66.     {
  67.         return $this->caption;
  68.     }
  69.     public function setCaption($caption): self
  70.     {
  71.         $this->caption $caption;
  72.         return $this;
  73.     }
  74.     public function getDescription()
  75.     {
  76.         return $this->description;
  77.     }
  78.     public function setDescription($description): self
  79.     {
  80.         $this->description $description;
  81.         return $this;
  82.     }
  83.     public function getPriority(): int
  84.     {
  85.         return $this->priority;
  86.     }
  87.     public function setPriority(int $priority): self
  88.     {
  89.         $this->priority $priority;
  90.         return $this;
  91.     }
  92.     public function getImage()
  93.     {
  94.         return $this->image;
  95.     }
  96.     public function setImage($image): self
  97.     {
  98.         $this->image $image;
  99.         return $this;
  100.     }
  101. }