src/Data/SearchData.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Data;
  3. use App\Entity\District;
  4. use App\Entity\Job;
  5. use App\Entity\DomainActivity;
  6. use phpDocumentor\Reflection\Types\Integer;
  7. use phpDocumentor\Reflection\Types\Boolean;
  8. class SearchData
  9. {
  10.     /**
  11.      * 
  12.      * @var integer
  13.      */
  14.     public $page=1
  15.     /**
  16.      * 
  17.      * @var string
  18.      */
  19.     public $q ='';
  20.     
  21.     /**
  22.      * 
  23.      * @var District[]
  24.      */
  25.     public $districts=[];
  26.     
  27.     /**
  28.      * 
  29.      * @var Job[]
  30.      */
  31.     public $jobs=[];
  32.     
  33.     /**
  34.      * 
  35.      * @var DomainActivity[]
  36.      */
  37.     public $categories=[];
  38.     
  39.     /**
  40.      * 
  41.      * @var null|Integer
  42.      */
  43.     public $priceMax;
  44.     
  45.     /**
  46.      * 
  47.      * @var null|Integer
  48.      */
  49.     public $priceMin;
  50.     
  51.     /**
  52.      * permet d'afficher les promo s'il y en a
  53.      * @var Boolean
  54.      */
  55.     //public $promo=false;
  56. }