| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | 1 | public static function formattedOptions(): array |
|
| 35 | { |
||
| 36 | 1 | $data = []; |
|
| 37 | 1 | foreach (static::options() as $value => $label) { |
|
| 38 | 1 | $data[] = [ |
|
| 39 | 1 | config('thinkit.enums.formatted_options_key.value') => $value, |
|
| 40 | 1 | config('thinkit.enums.formatted_options_key.label') => $label, |
|
| 41 | 1 | ]; |
|
| 42 | } |
||
| 43 | |||
| 44 | 1 | return $data; |
|
| 45 | } |
||
| 47 |