Passed
Push — master ( 1c4ceb...50b2e6 )
by Doug
44:53
created

Extent4619   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 7 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/Italy - 6°22'E to 18°40'E and north of 35°16'N; San Marino, Vatican City State.
13
 * @internal
14
 */
15
class Extent4619
16
{
17
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23
                    [18.666666666667, 47.094581604004], [6.3666666666668, 47.094581604004], [6.3666666666668, 35.266666666667], [18.666666666667, 35.266666666667], [18.666666666667, 47.094581604004],
24
                ],
25
            ],
26
        ];
27
    }
28
}
29