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

Extent4198   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
 * North America/USA - Oregon - Grants Pass-Ashland.
13
 * @internal
14
 */
15
class Extent4198
16
{
17 8
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23 8
                    [-122.37902459372, 42.845915472643], [-123.94496864868, 42.845915472643], [-123.94496864868, 41.883358942837], [-122.37902459372, 41.883358942837], [-122.37902459372, 42.845915472643],
24
                ],
25
            ],
26
        ];
27
    }
28
}
29