Passed
Push — master ( fd93b5...48e916 )
by Doug
40:26 queued 29:39
created

Extent4653::__invoke()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 12
rs 10
c 1
b 0
f 0
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
 * Australasia and Oceania/Papua New Guinea - 156°E to 162°E.
13
 * @internal
14
 */
15
class Extent4653
16
{
17
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23
                    [157.600833647, -9.9137342876718], [156, -9.9137342876718], [156, -14.255817437356], [157.600833647, -14.255817437356], [157.600833647, -9.9137342876718],
24
                ],
25
            ],
26
            [
27
                [
28
                    [162, -1.1139548849998], [156, -1.1139548849998], [156, -6.7226455982311], [162, -6.7226455982311], [162, -1.1139548849998],
29
                ],
30
            ],
31
        ];
32
    }
33
}
34