| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| 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 | Ipinfo::COUNTRY => '', |
||
| 30 | Ipinfo::HOSTNAME => '', |
||
| 31 | Ipinfo::IP => '', |
||
| 32 | Ipinfo::LOC => '', |
||
| 33 | Ipinfo::ORG => '', |
||
| 34 | Ipinfo::PHONE => '', |
||
| 35 | Ipinfo::POSTAL => '', |
||
| 36 | Ipinfo::REGION => '', |
||
| 37 | 5 | ), $properties); |
|
| 38 | 5 | } |
|
| 39 | |||
| 122 |