Conditions | 3 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
37 | 3 | public static function options(): array |
|
38 | { |
||
39 | 3 | $exportsList = []; |
|
40 | 3 | $exports = static::$exports; |
|
41 | 3 | if(!empty($exports)) { |
|
42 | /** @var CustomExport $export */ |
||
43 | 3 | foreach ($exports as $export) { |
|
44 | 3 | $exportsList[$export::key()] = $export::name(); |
|
45 | } |
||
46 | } |
||
47 | |||
48 | 3 | return $exportsList; |
|
49 | } |
||
68 |