4e23b6b207
Geoip 2.4.2 -> 2.6.0 MaxMind 1.1.0 -> 1.1.3
20 lines
400 B
PHP
20 lines
400 B
PHP
<?php
|
|
|
|
namespace GeoIp2\Record;
|
|
|
|
/**
|
|
* Contains data about your account.
|
|
*
|
|
* This record is returned by all location services and databases.
|
|
*
|
|
* @property-read int|null $queriesRemaining The number of remaining queries you
|
|
* have for the service you are calling.
|
|
*/
|
|
class MaxMind extends AbstractRecord
|
|
{
|
|
/**
|
|
* @ignore
|
|
*/
|
|
protected $validAttributes = ['queriesRemaining'];
|
|
}
|