Completed
Push — master ( 886d11...c65c55 )
by Carsten
04:23 queued 11s
created

GeoDataFactory::fromArray()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 9
ccs 6
cts 6
cp 1
rs 9.9666
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 1
1
<?php
2
namespace Germania\GeoData;
3
4
class GeoDataFactory
5
{
6
7 2
	public function fromArray( array $geodata = null) : GeoData
8
	{
9 2
		$latitude  = $geodata['latitude'] ?? null;
10 2
		$longitude = $geodata['longitude'] ?? null;
11 2
		$provider  = $geodata['provider'] ?? null;
12 2
		$status    = $geodata['status'] ?? null;
13
14 2
		return (new GeoData($latitude, $longitude, $provider))->setStatus( $status );		
15
	}
16
}