Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class Speed |
||
11 | { |
||
12 | /** |
||
13 | * @param float $speedInMetersPerSecond Speed in meters per second |
||
14 | * @param float|null $accuracyInMetersPerSecond Accuracy of speed measurement in meters per second |
||
15 | */ |
||
16 | 1 | public function __construct( |
|
20 | 1 | } |
|
21 | |||
22 | 1 | public static function fromAmazonRequest(array $amazonRequest): self |
|
30 |