1 | <?php |
||
5 | class Exposures extends MinMaxArrayIterator implements ExposuresInterface, ExposuresProviderInterface |
||
6 | { |
||
7 | |||
8 | use SearchableTrait; |
||
9 | |||
10 | /** |
||
11 | * @inheritDoc |
||
12 | 12 | * @return $this |
|
13 | */ |
||
14 | 12 | public function getExposures() : ExposuresInterface |
|
18 | |||
19 | /** |
||
20 | 12 | * @inheritDoc |
|
21 | * |
||
22 | 12 | * The range step width used here is a third of `log10(2) = 0.301...`. |
|
23 | * The numbers will most likely cleanly round to multiples of 0.1 though. |
||
24 | */ |
||
25 | public function getRange( float $step = null) : \SplFixedArray |
||
30 | |||
31 | } |
||
32 |