2013-03-12 16:21:24 -07:00

16 lines
178 B
PHP
Executable File

<?php
class Crunchbutton_Geo_Geoip {
private $_ip;
public function setIp($ip) {
$this->_id = $ip;
return $this;
}
public function getIp() {
return $this->_ip;
}
}