supernova-ws /
SuperNova
| 1 | <?php |
||
| 2 | |||
| 3 | function geoip_status(){return sn_function_call('geoip_status', array(&$result));} |
||
|
0 ignored issues
–
show
Comprehensibility
Best Practice
introduced
by
Loading history...
|
|||
| 4 | function sn_geoip_status(&$result) { |
||
| 5 | return $result = false; |
||
| 6 | } |
||
| 7 | |||
| 8 | function geoip_ip_info($ip){return sn_function_call('geoip_ip_info', array($ip, &$result));} |
||
|
0 ignored issues
–
show
Comprehensibility
Best Practice
introduced
by
|
|||
| 9 | function sn_geoip_ip_info($ip, &$result) { |
||
| 10 | return $result = false; |
||
| 11 | } |
||
| 12 |