src/Entity/AnnonceSearch.php line 5

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. class AnnonceSearch
  4. {
  5.     /**
  6.      * @var int|null
  7.      */
  8.     private $minsurface;
  9.     /**
  10.      * @var int|null
  11.      */
  12.     private $maxprice;
  13.     /**
  14.      * @var int|null
  15.      */
  16.     private $nbchambre;
  17.     /**
  18.      * @return int|null
  19.      */
  20.     public function getNbchambre(): ?int
  21.     {
  22.         return $this->nbchambre;
  23.     }
  24.     /**
  25.      * @param int|null $nbchambre
  26.      * @return AnnonceSearch
  27.      */
  28.     public function setNbchambreint $nbchambre): AnnonceSearch
  29.     {
  30.         $this->nbchambre $nbchambre;
  31.         return $this;
  32.     }
  33.     /**
  34.      * @return int|null
  35.      */
  36.     public function getMinsurface(): ?int
  37.     {
  38.         return $this->minsurface;
  39.     }
  40.     /**
  41.      * @param int|null $minsurface
  42.      * @return AnnonceSearch
  43.      */
  44.     public function setMinsurface(int $minsurface): AnnonceSearch
  45.     {
  46.         $this->minsurface $minsurface;
  47.         return $this;
  48.     }
  49.     /**
  50.      * @return int|null
  51.      */
  52.     public function getMaxprice(): ?int
  53.     {
  54.         return $this->maxprice;
  55.     }
  56.     /**
  57.      * @param int|null $maxprice
  58.      * @return AnnonceSearch
  59.      */
  60.     public function setMaxprice(int $maxprice): AnnonceSearch
  61.     {
  62.         $this->maxprice $maxprice;
  63.         return $this;
  64.     }
  65. }