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

Extent4431   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
 * Europe-FSU/Ukraine - 31°E to 34°E onshore.
13
 * @internal
14
 */
15
class Extent4431
16
{
17 8
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23 8
                    [34, 52.378601074219], [31, 52.378601074219], [31, 44.329493709157], [34, 44.329493709157], [34, 52.378601074219],
24
                ],
25
            ],
26
        ];
27
    }
28
}
29