Passed
Push — extents ( 6d8774...01b6e3 )
by Doug
61:12
created

Extent3436   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 66.67%

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 9
ccs 2
cts 3
cp 0.6667
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
/**
3
 * PHPCoord.
4
 *
5
 * @author Doug Wright
6
 */
7
declare(strict_types=1);
8
9
namespace PHPCoord\Geometry\Extents\BoundingBoxOnly;
10
11
/**
12
 * South America/South America - 72°W to 66°W, N hemisphere and SIRGAS 2000 by country.
13
 * @internal
14
 */
15
class Extent3436
16
{
17 8
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23 8
                    [-66, 15.632165908813], [-72, 15.632165908813], [-72, 0], [-66, 0], [-66, 15.632165908813],
24
                ],
25
            ],
26
        ];
27
    }
28
}
29