See Release Notes
Long Term Support Release
Differences Between: [Versions 39 and 311] [Versions 39 and 400] [Versions 39 and 401] [Versions 39 and 402] [Versions 39 and 403]
1 <?php 2 3 namespace GeoIp2\Record; 4 5 /** 6 * Contains data for the represented country associated with an IP address. 7 * 8 * This class contains the country-level data associated with an IP address 9 * for the IP's represented country. The represented country is the country 10 * represented by something like a military base. 11 * 12 * @property-read string|null $type A string indicating the type of entity that is 13 * representing the country. Currently we only return <code>military</code> 14 * but this could expand to include other types in the future. 15 */ 16 class RepresentedCountry extends Country 17 { 18 protected $validAttributes = [ 19 'confidence', 20 'geonameId', 21 'isInEuropeanUnion', 22 'isoCode', 23 'names', 24 'type', 25 ]; 26 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body