summaryrefslogtreecommitdiffstats
path: root/vendor/geoip2/geoip2/src/Record/MaxMind.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/geoip2/geoip2/src/Record/MaxMind.php')
-rw-r--r--vendor/geoip2/geoip2/src/Record/MaxMind.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/geoip2/geoip2/src/Record/MaxMind.php b/vendor/geoip2/geoip2/src/Record/MaxMind.php
new file mode 100644
index 0000000..0c2cdd3
--- /dev/null
+++ b/vendor/geoip2/geoip2/src/Record/MaxMind.php
@@ -0,0 +1,19 @@
+<?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'];
+}