Conditions | 4 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
49 | 6 | public function errormsg() : string |
|
50 | { |
||
51 | 6 | if ($this->missinginput()) { |
|
52 | 4 | $msg = "Missing input. Try again"; |
|
53 | 4 | } elseif (!$this->ip->validip($this->userip) && !$this->validcoord($this->longitud, $this->latitud)) { |
|
54 | 1 | $msg = "Invalid query parameters. Try again"; |
|
55 | } else { |
||
56 | 3 | $msg = ""; |
|
57 | } |
||
58 | 6 | return $msg; |
|
59 | } |
||
61 |