Passed
Push — master ( b9ea78...f0f43c )
by
unknown
01:00
created
src/InjectProcessor.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -76,12 +76,12 @@
 block discarded – undo
76 76
         /** @var Argument $argument */
77 77
         foreach ($annotation->arguments as $argument) {
78 78
             if ($argument->value[0] === '@') {
79
-                $definition->setArgument('$' . $argument->name, new Reference(substr($argument->value, 1)));
79
+                $definition->setArgument('$'.$argument->name, new Reference(substr($argument->value, 1)));
80 80
             } else {
81 81
                 if ($annotation->decoratedService) {
82
-                    $definition->setArgument('$' . $argument->name, new Reference($argument->value . '.inner'));
82
+                    $definition->setArgument('$'.$argument->name, new Reference($argument->value.'.inner'));
83 83
                 } else {
84
-                    $definition->setArgument('$' . $argument->name, $argument->value);
84
+                    $definition->setArgument('$'.$argument->name, $argument->value);
85 85
                 }
86 86
             }
87 87
         }
Please login to merge, or discard this patch.