• File: Details.php
  • Full Path: /home/chassiw/www/wp-content/plugins/zero-spam/vendor/ipinfo/ipinfo/src/Details.php
  • File size: 306 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace ipinfo\ipinfo;

/**
 * Holds formatted data for a single IP address.
 */
class Details
{
    public function __construct($raw_details)
    {
        foreach ($raw_details as $property => $value) {
            $this->$property = $value;
        }
        $this->all = $raw_details;
    }
}