Completed
Push — master ( 3bf8a8...cec675 )
by Raffael
03:55
created
src/Container.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -305,9 +305,9 @@
 block discarded – undo
305 305
 
306 306
                 $args[$param_name] = $this->findParentService($name, $type_class, $config, $parents);
307 307
             } elseif($param->isDefaultValueAvailable()) {
308
-                 $args[$param_name] = $param->getDefaultValue();
308
+                    $args[$param_name] = $param->getDefaultValue();
309 309
             } elseif($param->allowsNull() && $param->hasType()) {
310
-                 $args[$param_name] = null;
310
+                    $args[$param_name] = null;
311 311
             } else {
312 312
                 throw new Exception\Configuration('no value found for argument '.$param_name.' in method '.$method->getName().' for service '.$name);
313 313
             }
Please login to merge, or discard this patch.