Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| ClientIpHelper | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| getClientIp | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace BO\Zmscitizenapi\Utils; |
| 6 | |
| 7 | use BO\Slim\Helper\ClientIp; |
| 8 | |
| 9 | class ClientIpHelper |
| 10 | { |
| 11 | public static function getClientIp(): string |
| 12 | { |
| 13 | return ClientIp::getClientIp(); |
| 14 | } |
| 15 | } |