Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
result.php
1<?php
2
4
6
13class Result extends Main\Result
14{
16 protected $geoData = null;
17
21 public function __construct()
22 {
23 parent::__construct();
24 $this->geoData = new Data();
25 }
26
30 public function getGeoData()
31 {
32 return $this->geoData;
33 }
34
39 public function setGeoData(Data $geoData)
40 {
41 $this->geoData = $geoData;
42 return $this;
43 }
44}