src/Entity/Service.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\TimestampableTrait;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use App\Repository\ServiceRepository;
  7. use Doctrine\DBAL\Types\Types;
  8. use Doctrine\ORM\Mapping as ORM;
  9. use Gedmo\Mapping\Annotation as Gedmo;
  10. use Symfony\Component\Validator\Constraints as Assert;
  11. use Symfony\Component\HttpFoundation\File\UploadedFile;
  12. /**
  13.  * @ORM\Entity(repositoryClass=ServiceRepository::class)
  14.  */
  15. class Service
  16. {
  17.     use TimestampableTrait;
  18.     /**
  19.      * @ORM\Id
  20.      * @ORM\GeneratedValue
  21.      * @ORM\Column(type="integer")
  22.      */
  23.     private $id;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $title;
  28.     /**
  29.      * @Gedmo\Slug(fields={"title"}, unique=true)
  30.      * @ORM\Column(type="string", length=255)
  31.      */
  32.     private $slug;
  33.     /**
  34.      * @ORM\Column(type="text", nullable=true)
  35.      */
  36.     private $description;
  37.     /**
  38.      * @ORM\Column(type="string", length=255, nullable=true)
  39.      */
  40.     private $serviceType;
  41.     /**
  42.      * @ORM\Column(type="string", length=255, nullable=true)
  43.      */
  44.     private $image;
  45.     /**
  46.      * @Assert\Image(maxSize="2M")
  47.      */
  48.     private $file;
  49.     /**
  50.      * @ORM\OneToMany(targetEntity=Devis::class, mappedBy="service")
  51.      */
  52.     private $devis;
  53.     /**
  54.      * @ORM\Column(type="string", length=255, nullable=true)
  55.      */
  56.     private $icone;
  57.     public function __construct()
  58.     {
  59.         $this->devis = new ArrayCollection();
  60.     }
  61.     public function getId(): ?int
  62.     {
  63.         return $this->id;
  64.     }
  65.     public function getTitle(): ?string
  66.     {
  67.         return $this->title;
  68.     }
  69.     public function setTitle(string $title): self
  70.     {
  71.         $this->title $title;
  72.         return $this;
  73.     }
  74.     public function getSlug(): ?string
  75.     {
  76.         return $this->slug;
  77.     }
  78.     public function setSlug(string $slug): self
  79.     {
  80.         $this->slug $slug;
  81.         return $this;
  82.     }
  83.     public function getDescription(): ?string
  84.     {
  85.         return $this->description;
  86.     }
  87.     public function setDescription(?string $description): self
  88.     {
  89.         $this->description $description;
  90.         return $this;
  91.     }
  92.     public function getServiceType(): ?string
  93.     {
  94.         return $this->serviceType;
  95.     }
  96.     public function setServiceType(?string $serviceType): self
  97.     {
  98.         $this->serviceType $serviceType;
  99.         return $this;
  100.     }
  101.     public function getImage(): ?string
  102.     {
  103.         return $this->image;
  104.     }
  105.     public function setImage(?string $image): self
  106.     {
  107.         $this->image $image;
  108.         return $this;
  109.     }
  110.     public function setFile($file)
  111.     {
  112.         $this->file $file;
  113.         return $this;
  114.     }
  115.     public function getFile()
  116.     {
  117.         return $this->file;
  118.     }
  119.     /**
  120.      * @return Collection<int, Devis>
  121.      */
  122.     public function getDevis(): Collection
  123.     {
  124.         return $this->devis;
  125.     }
  126.     public function addDevi(Devis $devi): self
  127.     {
  128.         if (!$this->devis->contains($devi)) {
  129.             $this->devis[] = $devi;
  130.             $devi->setService($this);
  131.         }
  132.         return $this;
  133.     }
  134.     public function removeDevi(Devis $devi): self
  135.     {
  136.         if ($this->devis->removeElement($devi)) {
  137.             // set the owning side to null (unless already changed)
  138.             if ($devi->getService() === $this) {
  139.                 $devi->setService(null);
  140.             }
  141.         }
  142.         return $this;
  143.     }
  144.     public function getIcone(): ?string
  145.     {
  146.         return $this->icone;
  147.     }
  148.     public function setIcone(?string $icone): self
  149.     {
  150.         $this->icone $icone;
  151.         return $this;
  152.     }
  153. }