Passed
Push — 4.x ( c9532e...227508 )
by Doug
26:13
created

Extent4633::__invoke()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 17
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 4
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 17
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/Ukraine - Kyiv oblast.
13
 * @internal
14
 */
15
class Extent4633
16
{
17
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23
                    [32.159176, 51.534181995], [29.268715, 51.534181995], [29.268715, 49.177311], [32.159176, 49.177311], [32.159176, 51.534181995],
24
                ],
25
            ],
26
            [
27
                [
28
                    [30.784047, 51.552241], [30.646811, 51.552241], [30.646811, 51.510058], [30.784047, 51.510058], [30.784047, 51.552241],
29
                ],
30
            ],
31
            [
32
                [
33
                    [30.752635146, 50.524552109], [30.72140213, 50.524552109], [30.72140213, 50.510853028], [30.752635146, 50.510853028], [30.752635146, 50.524552109],
34
                ],
35
            ],
36
        ];
37
    }
38
}
39