src/Model/PdfMerge/PdfDemoModel.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Model\PdfMerge;
  3. class PdfDemoModel
  4. {
  5.     
  6.     private $pdf1;
  7.     
  8.     private $pdf2;
  9.     
  10.     /**
  11.      * @return mixed
  12.      */
  13.     public function getPdf1 ()
  14.     {
  15.         return $this->pdf1;
  16.     }
  17.     
  18.     /**
  19.      * @param mixed $pdf1
  20.      */
  21.     public function setPdf1 ($pdf1): void
  22.     {
  23.         $this->pdf1 $pdf1;
  24.     }
  25.     
  26.     /**
  27.      * @return mixed
  28.      */
  29.     public function getPdf2 ()
  30.     {
  31.         return $this->pdf2;
  32.     }
  33.     
  34.     /**
  35.      * @param mixed $pdf2
  36.      */
  37.     public function setPdf2 ($pdf2): void
  38.     {
  39.         $this->pdf2 $pdf2;
  40.     }
  41.     
  42. }