| Conditions | 10 |
| Paths | 32 |
| Total Lines | 32 |
| Code Lines | 24 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 44 | protected function finalize(array $values = []): array |
||
| 45 | { |
||
| 46 | $types = [ |
||
| 47 | 'checkbox' => Controls_Manager::SWITCHER, |
||
| 48 | 'number' => Controls_Manager::NUMBER, |
||
| 49 | 'radio' => Controls_Manager::CHOOSE, |
||
| 50 | 'select' => Controls_Manager::SELECT2, |
||
| 51 | 'text' => Controls_Manager::TEXT, |
||
| 52 | 'textarea' => Controls_Manager::TEXTAREA, |
||
| 53 | ]; |
||
| 54 | if (array_key_exists($values['type'], $types)) { |
||
| 55 | $values['type'] = $types[$values['type']]; |
||
| 56 | } |
||
| 57 | if (Controls_Manager::SWITCHER === $values['type'] && !empty($values['options'])) { |
||
| 58 | $values['type'] = 'multi_switcher'; |
||
| 59 | } |
||
| 60 | if (!in_array($values['type'], [ |
||
| 61 | Controls_Manager::CHOOSE, |
||
| 62 | Controls_Manager::COLOR, |
||
| 63 | Controls_Manager::NUMBER, |
||
| 64 | Controls_Manager::SWITCHER, |
||
| 65 | ]) && !isset($values['label_block'])) { |
||
| 66 | $values['label_block'] = true; |
||
| 67 | } |
||
| 68 | if (Controls_Manager::SELECT2 === $values['type'] && !empty($values['placeholder'])) { |
||
| 69 | $values['select2options'] ??= []; |
||
| 70 | $values['select2options']['placeholder'] = $values['placeholder']; |
||
| 71 | } |
||
| 72 | if (Controls_Manager::SELECT2 === $values['type'] && !isset($values['options'])) { |
||
| 73 | $values['type'] = 'select2_ajax'; |
||
| 74 | } |
||
| 75 | return $values; |
||
| 76 | } |
||
| 78 |