Started filling in Model and Record code

This commit is contained in:
Gregory Oschwald
2013-05-07 14:23:19 -07:00
parent 76a40bb2a1
commit 531e11f3e2
15 changed files with 67 additions and 14 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ class Client
private $language;
private $base_uri = 'https://geoip.maxmind.com/geoip/v2.0';
function __construct($user_id, $license_key, $language='en')
public function __construct($user_id, $license_key, $language='en')
{
$this->user_id = $user_id;
$this->license_key = $license_key;
@@ -134,4 +134,4 @@ class Client
"($status) for $uri",
$status, $uri);
}
}
}