@@ -145,7 +145,6 @@ |
||
145 | 145 | /** |
146 | 146 | * Evaluate one configuration item. |
147 | 147 | * |
148 | - * @param array $processed |
|
149 | 148 | * @param array $config |
150 | 149 | * @return array |
151 | 150 | */ |
@@ -28,7 +28,7 @@ |
||
28 | 28 | foreach ($settings as $setterMethod => $args) { |
29 | 29 | $fn = [$object, $setterMethod]; |
30 | 30 | if (is_callable($fn)) { |
31 | - $result = call_user_func_array($fn, (array)$args); |
|
31 | + $result = call_user_func_array($fn, (array) $args); |
|
32 | 32 | |
33 | 33 | // We require that $fn must only be used with setter methods. |
34 | 34 | // Setter methods are required to always return $this so that |