Conditions | 4 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
65 | 13 | public function awake(Awaker $awaker, $value) |
|
66 | { |
||
67 | /** @noinspection NotOptimalIfConditionsInspection */ |
||
68 | 13 | if (isset($value['type'], $value['coordinates']) && $value['type'] === 'Point') { |
|
69 | |||
70 | 4 | $coords = $value['coordinates']; |
|
71 | |||
72 | 4 | if (\count($coords) === 2) { |
|
73 | 2 | return Point::fromLngLat($coords[0], $coords[1]); |
|
74 | } |
||
75 | } |
||
76 | |||
77 | 11 | return null; |
|
78 | } |
||
79 | } |
||
80 |