@@ -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 |