Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Database/Reader.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@ class Reader implements ProviderInterface
* @var DbReader
*/
private $dbReader;

/**
* @var string
*/
private $dbType;

/**
* @var array<string>
*/
Expand Down
7 changes: 7 additions & 0 deletions src/Model/AnonymousIp.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,30 +35,37 @@ class AnonymousIp extends AbstractModel
* @var bool
*/
protected $isAnonymous;

/**
* @var bool
*/
protected $isAnonymousVpn;

/**
* @var bool
*/
protected $isHostingProvider;

/**
* @var bool
*/
protected $isPublicProxy;

/**
* @var bool
*/
protected $isResidentialProxy;

/**
* @var bool
*/
protected $isTorExitNode;

/**
* @var string
*/
protected $ipAddress;

/**
* @var string
*/
Expand Down
3 changes: 3 additions & 0 deletions src/Model/Asn.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,17 @@ class Asn extends AbstractModel
* @var int|null
*/
protected $autonomousSystemNumber;

/**
* @var string|null
*/
protected $autonomousSystemOrganization;

/**
* @var string
*/
protected $ipAddress;

/**
* @var string
*/
Expand Down
3 changes: 3 additions & 0 deletions src/Model/City.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,21 @@ class City extends Country
* @var \GeoIp2\Record\City
*/
protected $city;

/**
* @ignore
*
* @var \GeoIp2\Record\Location
*/
protected $location;

/**
* @ignore
*
* @var \GeoIp2\Record\Postal
*/
protected $postal;

/**
* @ignore
*
Expand Down
2 changes: 2 additions & 0 deletions src/Model/ConnectionType.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ class ConnectionType extends AbstractModel
* @var string|null
*/
protected $connectionType;

/**
* @var string
*/
protected $ipAddress;

/**
* @var string
*/
Expand Down
6 changes: 6 additions & 0 deletions src/Model/Country.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,26 +34,32 @@ class Country extends AbstractModel
* @var \GeoIp2\Record\Continent
*/
protected $continent;

/**
* @var \GeoIp2\Record\Country
*/
protected $country;

/**
* @var array<string>
*/
protected $locales;

/**
* @var \GeoIp2\Record\MaxMind
*/
protected $maxmind;

/**
* @var \GeoIp2\Record\Country
*/
protected $registeredCountry;

/**
* @var \GeoIp2\Record\RepresentedCountry
*/
protected $representedCountry;

/**
* @var \GeoIp2\Record\Traits
*/
Expand Down
2 changes: 2 additions & 0 deletions src/Model/Domain.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ class Domain extends AbstractModel
* @var string|null
*/
protected $domain;

/**
* @var string
*/
protected $ipAddress;

/**
* @var string
*/
Expand Down
7 changes: 7 additions & 0 deletions src/Model/Isp.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,30 +36,37 @@ class Isp extends AbstractModel
* @var int|null
*/
protected $autonomousSystemNumber;

/**
* @var string|null
*/
protected $autonomousSystemOrganization;

/**
* @var string|null
*/
protected $isp;

/**
* @var string|null
*/
protected $mobileCountryCode;

/**
* @var string|null
*/
protected $mobileNetworkCode;

/**
* @var string|null
*/
protected $organization;

/**
* @var string
*/
protected $ipAddress;

/**
* @var string
*/
Expand Down
2 changes: 2 additions & 0 deletions src/WebService/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,12 @@ class Client implements ProviderInterface
* @var array<string>
*/
private $locales;

/**
* @var WsClient
*/
private $client;

/**
* @var string
*/
Expand Down