Completed
Push — master ( 664a97...d2afb6 )
by Greg
01:27
created
src/Loader/ConfigProcessor.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,6 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
src/Inject/ConfigForSetters.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.