Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function latLongValueProvider() { |
||
18 | $argLists = []; |
||
19 | |||
20 | $argLists[] = [ new LatLongValue( 0, 0 ) ]; |
||
21 | $argLists[] = [ new LatLongValue( 4, 2 ) ]; |
||
22 | $argLists[] = [ new LatLongValue( 42, 42 ) ]; |
||
23 | $argLists[] = [ new LatLongValue( -4.2, -42 ) ]; |
||
24 | |||
25 | return $argLists; |
||
26 | } |
||
27 | |||
37 |