You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
400 B
19 lines
400 B
<?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'];
|
|
}
|
|
|