Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 13 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 5 | public function __construct($properties = array()) |
|
25 | { |
||
26 | //Merge default values |
||
27 | 5 | $this->properties = array_merge(array( |
|
28 | 5 | Ipinfo::CITY => '', |
|
29 | 5 | Ipinfo::COUNTRY => '', |
|
30 | 5 | Ipinfo::HOSTNAME => '', |
|
31 | 5 | Ipinfo::IP => '', |
|
32 | 5 | Ipinfo::LOC => '', |
|
33 | 5 | Ipinfo::ORG => '', |
|
34 | 5 | Ipinfo::PHONE => '', |
|
35 | 5 | Ipinfo::POSTAL => '', |
|
36 | 5 | Ipinfo::REGION => '', |
|
37 | 5 | ), $properties); |
|
38 | 5 | } |
|
39 | |||
122 |