Overview

Namespaces

  • GeoIp2
    • Database
    • Exception
    • Model
    • Record
    • Test
      • Model
      • WebService
    • WebService
  • MaxMind
    • MinFraud
      • Model
  • None
  • PHP

Classes

  • Address
  • BillingAddress
  • CreditCard
  • GeoIp2Country
  • GeoIp2Location
  • Insights
  • IpAddress
  • Issuer
  • Score
  • ShippingAddress
  • Warning
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: 
 3: namespace MaxMind\MinFraud\Model;
 4: 
 5: use GeoIp2\Record\Country;
 6: 
 7: /**
 8:  * Class GeoIp2Country
 9:  * @package MaxMind\MinFraud\Model
10:  *
11:  * @property boolean $isHighRisk This value is true if the IP country is high
12:  * risk.
13:  **/
14: class GeoIp2Country extends Country
15: {
16:     /**
17:      * @internal
18:      */
19:     protected $validAttributes = array(
20:         'confidence',
21:         'geonameId',
22:         'isoCode',
23:         'isHighRisk',
24:         'names'
25:     );
26: }
27: 
minFraud Score and Insights PHP API v0.1.0 API documentation generated by ApiGen