Passed
Push — master ( a234d9...a45f06 )
by Doug
14:05
created

Extent4622::__invoke()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 7
rs 10
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
 * Europe-FSU/UK - Oxford to Bedford.
13
 * @internal
14
 */
15
class Extent4622
16
{
17
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23
                    [-0.36666666699995, 52.2375], [-1.4291666669999, 52.2375], [-1.4291666669999, 51.7], [-0.36666666699995, 51.7], [-0.36666666699995, 52.2375],
24
                ],
25
            ],
26
        ];
27
    }
28
}
29