1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
result.php
См. документацию.
1<?php
2
3namespace Bitrix\Main\Service\GeoIp;
4
5use Bitrix\Main;
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}
Определения result.php:20
setGeoData(Data $geoData)
Определения result.php:39
Определения aliases.php:105