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

Extent2470   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
 * Asia-ExFSU/Japan - 37°20'N to 38°N; 141°E to 142°E.
13
 * @internal
14
 */
15
class Extent2470
16
{
17 8
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23 8
                    [141.10182532476, 37.863104299607], [141, 37.863104299607], [141, 37.332866666667], [141.10182532476, 37.332866666667], [141.10182532476, 37.863104299607],
24
                ],
25
            ],
26
        ];
27
    }
28
}
29