| Conditions | 8 |
| Paths | 20 |
| Total Lines | 51 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 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 |
||
| 13 | public function expand($values) { |
||
| 14 | $return = []; |
||
| 15 | $overrides = $this->fieldConfig->getSettings()['field_overrides']; |
||
| 16 | $addressFields = [ |
||
| 17 | "given_name" => 1, |
||
| 18 | "additional_name" => 1, |
||
| 19 | "family_name" => 1, |
||
| 20 | "organization" => 1, |
||
| 21 | "address_line1" => 1, |
||
| 22 | "address_line2" => 1, |
||
| 23 | "postal_code" => 1, |
||
| 24 | "sorting_code" => 1, |
||
| 25 | "locality" => 1, |
||
| 26 | "administrative_area" => 1, |
||
| 27 | ]; |
||
| 28 | // Any overrides that set field inputs to hidden will be skipped. |
||
| 29 | foreach ($overrides as $key => $value) { |
||
| 30 | preg_match('/[A-Z]/', $key, $matches, PREG_OFFSET_CAPTURE); |
||
| 31 | if (count($matches) > 0) { |
||
| 32 | $fieldName = strtolower(substr_replace($key, '_', $matches[0][1], 0)); |
||
| 33 | } |
||
| 34 | else { |
||
| 35 | $fieldName = $key; |
||
| 36 | } |
||
| 37 | if ($value['override'] == 'hidden') { |
||
| 38 | unset($addressFields[$fieldName]); |
||
| 39 | } |
||
| 40 | } |
||
| 41 | // The remaining field components will be populated in order, using |
||
| 42 | // values as they are ordered in feature step. |
||
| 43 | foreach ($values as $value) { |
||
| 44 | $idx = 0; |
||
| 45 | foreach ($addressFields as $k => $v) { |
||
| 46 | // If the values array contains only one item, assign it to the first |
||
| 47 | // field component and break. |
||
| 48 | if (is_string($value)) { |
||
| 49 | $return[$k] = $value; |
||
| 50 | break; |
||
| 51 | } |
||
| 52 | if ($idx < count($value)) { |
||
| 53 | // Gracefully handle users providing too few field component values. |
||
| 54 | $return[$k] = $value[$idx]; |
||
| 55 | $idx++; |
||
| 56 | } |
||
| 57 | } |
||
| 58 | // Set the country code to the first available as configured in this |
||
| 59 | // instance of the field. |
||
| 60 | $return['country_code'] = reset($this->fieldConfig->getSettings()['available_countries']); |
||
| 61 | } |
||
| 62 | return [$return]; |
||
| 63 | } |
||
| 64 | |||
| 66 |