src/Form/Model/ImportInventory.php line 5

Open in your IDE?
  1. <?php
  2. namespace App\Form\Model;
  3. class ImportInventory
  4. {
  5.     protected $supplier;
  6.     protected $status;
  7.     protected $separator;
  8.     protected $file;
  9.     protected $path;
  10.     public function setSupplier($supplier) { $this->supplier $supplier; return $this; }
  11.     public function getSupplier() { return $this->supplier; }
  12.     public function setStatus($status) { $this->status $status; return $this; }
  13.     public function getStatus() { return $this->status; }
  14.     public function setSeparator($separator) { $this->separator $separator; return $this; }
  15.     public function getSeparator() { return $this->separator; }
  16.     public function setFile($file) { $this->file $file; return $this; }
  17.     public function getFile() { return $this->file; }
  18.     
  19.     public function setPath($path) { $this->path $path; return $this; }
  20.     public function getPath() { return $this->path; }
  21. }