| 1 | <?php |
||
| 5 | class Ip |
||
| 6 | { |
||
| 7 | protected $id; |
||
| 8 | protected $address; |
||
| 9 | |||
| 10 | 2 | protected function __construct($id, $address) { |
|
| 14 | |||
| 15 | 1 | static public function makeFromIpJson($ipJson) { |
|
| 21 | |||
| 22 | 1 | static public function makeFromIpAddress($ipAddress) { |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @return mixed |
||
| 28 | */ |
||
| 29 | 2 | public function getId() { |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return mixed |
||
| 35 | */ |
||
| 36 | 2 | public function getAddress() { |
|
| 39 | } |