1 | <?php |
||
4 | class SpeedPoint extends SpeedPointAbstract implements SpeedPointInterface, SpeedPointProviderInterface |
||
5 | { |
||
6 | |||
7 | /** |
||
8 | * @param float $logH Exposure value |
||
9 | * @param string $type Short description |
||
10 | */ |
||
11 | 15 | public function __construct( ?float $logH, ?string $type = null) |
|
16 | |||
17 | |||
18 | /** |
||
19 | * @inheritDoc |
||
20 | */ |
||
21 | 6 | public function getSpeedPoint(): SpeedPointInterface |
|
25 | |||
26 | |||
27 | 9 | /** |
|
28 | * @return mixed[] |
||
29 | */ |
||
30 | 9 | public function __debugInfo() : array |
|
40 | } |
||
41 |