Conditions | 8 |
Paths | 10 |
Total Lines | 57 |
Code Lines | 18 |
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 namespace Anomaly\Streams\Platform\Ui\Form\Component\Field; |
||
20 | public function fill(FormBuilder $builder) |
||
21 | { |
||
22 | $fields = $builder->getFields(); |
||
23 | $stream = $builder->getFormStream(); |
||
24 | |||
25 | /* |
||
26 | * If no Stream, skip it. |
||
27 | */ |
||
28 | if (!$stream) { |
||
29 | if (array_search('*', $fields) !== false) { |
||
30 | unset($fields[array_search('*', $fields)]); |
||
31 | |||
32 | $builder->setFields($fields); |
||
33 | } |
||
34 | |||
35 | return; |
||
36 | } |
||
37 | |||
38 | /* |
||
39 | * Fill with everything by default. |
||
40 | */ |
||
41 | $fill = $stream->getAssignments()->fieldSlugs(); |
||
42 | |||
43 | /* |
||
44 | * Loop over field configurations and unset |
||
45 | * them from the fill fields. |
||
46 | * |
||
47 | * If we come across the fill marker then |
||
48 | * set the position. |
||
49 | */ |
||
50 | foreach ($fields as $parameters) { |
||
|
|||
51 | if (is_string($parameters) && $parameters === '*') { |
||
52 | continue; |
||
53 | } |
||
54 | |||
55 | /** |
||
56 | * If we found a field then |
||
57 | * unset it from the fill fields. |
||
58 | */ |
||
59 | if (($search = array_search($parameters['field'], $fill)) !== false) { |
||
60 | unset($fill[$search]); |
||
61 | } |
||
62 | } |
||
63 | |||
64 | /* |
||
65 | * If we have a fill marker then splice |
||
66 | * in the remaining fill fields in place |
||
67 | * of the fill marker. |
||
68 | */ |
||
69 | if (($position = array_search('*', $fields)) !== false) { |
||
70 | array_splice($fields, $position, null, $fill); |
||
71 | |||
72 | unset($fields[array_search('*', $fields)]); |
||
73 | } |
||
74 | |||
75 | $builder->setFields($fields); |
||
76 | } |
||
77 | } |
||
78 |
There are different options of fixing this problem.
If you want to be on the safe side, you can add an additional type-check:
If you are sure that the expression is traversable, you might want to add a doc comment cast to improve IDE auto-completion and static analysis:
Mark the issue as a false-positive: Just hover the remove button, in the top-right corner of this issue for more options.