Conditions | 16 |
Paths | 16 |
Total Lines | 36 |
Code Lines | 25 |
Lines | 12 |
Ratio | 33.33 % |
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 |
||
33 | public function parse($rawBody, $contentType) |
||
34 | { |
||
35 | $array = parent::parse($rawBody, $contentType); |
||
36 | if ($type = ArrayHelper::getValue($array, 'data.type')) { |
||
37 | $formName = $this->typeToFormName($type); |
||
38 | if ($attributes = ArrayHelper::getValue($array, 'data.attributes')) { |
||
39 | $result[$formName] = array_combine($this->parseMemberNames(array_keys($attributes)), array_values($attributes)); |
||
|
|||
40 | } elseif ($id = ArrayHelper::getValue($array, 'data.id')) { |
||
41 | $result[$formName] = ['id' => $id, 'type' => $type]; |
||
42 | } |
||
43 | if ($relationships = ArrayHelper::getValue($array, 'data.relationships')) { |
||
44 | foreach ($relationships as $name => $relationship) { |
||
45 | if (isset($relationship[0])) { |
||
46 | View Code Duplication | foreach ($relationship as $item) { |
|
47 | if (isset($item['type']) && isset($item['id'])) { |
||
48 | $formName = $this->typeToFormName($item['type']); |
||
49 | $result[$name][$formName][] = $item; |
||
50 | } |
||
51 | } |
||
52 | } elseif (isset($relationship['type']) && isset($relationship['id'])) { |
||
53 | $formName = $this->typeToFormName($relationship['type']); |
||
54 | $result[$name][$formName] = $relationship; |
||
55 | } |
||
56 | } |
||
57 | } |
||
58 | } else { |
||
59 | $data = ArrayHelper::getValue($array, 'data', []); |
||
60 | View Code Duplication | foreach ($data as $relationLink) { |
|
61 | if (isset($relationLink['type']) && isset($relationLink['id'])) { |
||
62 | $formName = $this->typeToFormName($relationLink['type']); |
||
63 | $result[$formName][] = $relationLink; |
||
64 | } |
||
65 | } |
||
66 | } |
||
67 | return isset($result) ? $result : $array; |
||
68 | } |
||
69 | |||
88 |
Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.
Let’s take a look at an example:
As you can see in this example, the array
$myArray
is initialized the first time when the foreach loop is entered. You can also see that the value of thebar
key is only written conditionally; thus, its value might result from a previous iteration.This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.