src/Entity/QRCode.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\QRCodeRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=QRCodeRepository::class)
  7.  */
  8. class QRCode
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $svg;
  20.     /**
  21.      * @ORM\OneToOne(targetEntity=Cuvee::class, inversedBy="qRCode", cascade={"persist", "remove"})
  22.      * @ORM\JoinColumn(nullable=false)
  23.      */
  24.     private $cuvee;
  25.     /**
  26.      * @ORM\Column(type="string", length=255)
  27.      */
  28.     private $png;
  29.     /**
  30.      * @ORM\Column(type="string", length=255)
  31.      */
  32.     private $pdf;
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getSvg(): ?string
  38.     {
  39.         return $this->svg;
  40.     }
  41.     public function setSvg(string $svg): self
  42.     {
  43.         $this->svg $svg;
  44.         return $this;
  45.     }
  46.     public function getCuvee(): ?Cuvee
  47.     {
  48.         return $this->cuvee;
  49.     }
  50.     public function setCuvee(Cuvee $cuvee): self
  51.     {
  52.         $this->cuvee $cuvee;
  53.         return $this;
  54.     }
  55.     public function getPng(): ?string
  56.     {
  57.         return $this->png;
  58.     }
  59.     public function setPng(string $png): self
  60.     {
  61.         $this->png $png;
  62.         return $this;
  63.     }
  64.     public function getPdf(): ?string
  65.     {
  66.         return $this->pdf;
  67.     }
  68.     public function setPdf(string $pdf): self
  69.     {
  70.         $this->pdf $pdf;
  71.         return $this;
  72.     }
  73. }