Completed
Pull Request — master (#8)
by Emily
02:13
created
src/Factory/GenericCompositeGenerator.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         $i = 0;
93 93
 
94 94
         $code =
95
-              'namespace ' . $class->namespace . ';'
95
+                'namespace ' . $class->namespace . ';'
96 96
             . 'class ' . $class->classname . ' '
97 97
             .     'extends \\' . $originalClass . ' '
98 98
             .     'implements \\' . Generic::class
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
         }
131 131
 
132 132
         return
133
-              ($method->scope === 'static' ? 'static ' : '')
133
+                ($method->scope === 'static' ? 'static ' : '')
134 134
             . 'function ' . $method->name
135 135
             . '(' . implode(',', $params) . '){'
136 136
             . '__generic_' . $method->name
Please login to merge, or discard this patch.