Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | final class MinElementNotFoundException extends LogicException implements ExceptionInterface |
||
12 | { |
||
13 | |||
14 | private $dataList; |
||
15 | |||
16 | private $elements; |
||
17 | |||
18 | /** |
||
19 | * @param array $dataList |
||
20 | * @param ScalarValueInterface[] $elements |
||
21 | * @param Throwable|null $previous |
||
22 | */ |
||
23 | 6 | public function __construct(array $dataList, array $elements, Throwable $previous = null) |
|
28 | 6 | } |
|
29 | |||
30 | 1 | public function getDataList(): array |
|
33 | } |
||
34 | |||
35 | /** |
||
36 | * @return ScalarValueInterface[] |
||
37 | */ |
||
38 | 1 | public function getElements(): array |
|
43 |