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

Extent4648   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 14
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 12 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 - Crimea.
13
 * @internal
14
 */
15
class Extent4648
16
{
17
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23
                    [33.183658113, 45.808596203], [33.174854107, 45.808596203], [33.174854107, 45.79868044], [33.183658113, 45.79868044], [33.183658113, 45.808596203],
24
                ],
25
            ],
26
            [
27
                [
28
                    [36.647501506, 46.236422], [32.479116957, 46.236422], [32.479116957, 44.386365953], [36.647501506, 44.386365953], [36.647501506, 46.236422],
29
                ],
30
            ],
31
        ];
32
    }
33
}
34