コード例 #1
0
ファイル: AbstractSearch.php プロジェクト: rdbn/shopsnmarkets
 /**
  * Получаем id города
  *
  * @param City $city
  *
  * @return self
  */
 public function setCityId($city)
 {
     if ($city) {
         $this->cityId = $city->getId();
     }
     return $this;
 }