Passed
Branch master (b57997)
by Doug
12:41
created

Extent4598::__invoke()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 22
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 5
nc 1
nop 0
dl 0
loc 22
rs 10
c 1
b 0
f 0
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/Spain - Canary Islands western.
13
 * @internal
14
 */
15
class Extent4598
16
{
17
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23
                    [-17.833477020264, 27.898611068726], [-18.219863891602, 27.898611068726], [-18.219863891602, 27.587495803833], [-17.833477020264, 27.587495803833], [-17.833477020264, 27.898611068726],
24
                ],
25
            ],
26
            [
27
                [
28
                    [-17.039167404175, 28.256109237671], [-17.382499694824, 28.256109237671], [-17.382499694824, 27.959997177124], [-17.039167404175, 27.959997177124], [-17.039167404175, 28.256109237671],
29
                ],
30
            ],
31
            [
32
                [
33
                    [-16.086167007681, 28.622220993042], [-16.95937538147, 28.622220993042], [-16.95937538147, 27.934164047241], [-16.086167007681, 27.934164047241], [-16.086167007681, 28.622220993042],
34
                ],
35
            ],
36
            [
37
                [
38
                    [-17.666528701782, 28.898195266724], [-18.05305480957, 28.898195266724], [-18.05305480957, 28.403192520142], [-17.666528701782, 28.403192520142], [-17.666528701782, 28.898195266724],
39
                ],
40
            ],
41
        ];
42
    }
43
}
44