%PDF- %PDF-
Direktori : /proc/self/root/home/bitrix/www/bitrix/modules/main/lib/service/geoip/ |
Current File : //proc/self/root/home/bitrix/www/bitrix/modules/main/lib/service/geoip/result.php |
<? namespace Bitrix\Main\Service\GeoIp; use Bitrix\Main; /** * Class Result * @package Bitrix\Main\Service\GeoIp * Contains info about success or error descriptions of receiving geolocation information, * and geolocation information. */ class Result extends Main\Result { /** @var Data Geolocation data */ protected $geoData = null; /** * Result constructor. */ public function __construct() { parent::__construct(); $this->geoData = new Data(); } /** * @return Data */ public function getGeoData() { return $this->geoData; } /** * @param Data $geoData */ public function setGeoData(Data $geoData) { $this->geoData = $geoData; } }