Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace Drupal\visitors_geoip; |
4 | |
5 | /** |
6 | * Rebuild the location from the IP address. |
7 | * |
8 | * @package Drupal\visitors_geoip |
9 | */ |
10 | interface VisitorsGeoIpRebuildLocationInterface { |
11 | |
12 | /** |
13 | * Rebuild the location. |
14 | */ |
15 | public function rebuild(string $ip_address); |
16 | |
17 | /** |
18 | * Get the locations that need to be rebuilt. |
19 | * |
20 | * @return array |
21 | * The locations that need to be rebuilt. |
22 | */ |
23 | public function getLocations(); |
24 | |
25 | } |