| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | function createFeatherIconSelectChoices($iconKeys = []) |
||
| 8 | { |
||
| 9 | return array_reduce($iconKeys, function ($acc, $iconKey) { |
||
| 10 | $acc[$iconKey] = "<i style='width: 16px; height: 16px; vertical-align: middle; position: relative; top: -2px;margin-right: 5px' data-feather='{$iconKey}'></i> {$iconKey}"; |
||
| 11 | return $acc; |
||
| 12 | }, []); |
||
| 13 | } |
||
| 387 |