Completed
Push — master ( c33617...d4cce2 )
by Francis
02:20
created
src/Base/Generator/Object/Method/MethodGenerator.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -89,9 +89,9 @@  discard block
 block discarded – undo
89 89
         $content .= $this->buildMethodSignature($indent);
90 90
         $content .= "\n";
91 91
 
92
-        $content .= $indent . '{' . "\n";
92
+        $content .= $indent.'{'."\n";
93 93
         $content .= $this->buildMethodBody($indent);
94
-        $content .= $indent . '}' . "\n";
94
+        $content .= $indent.'}'."\n";
95 95
 
96 96
         return $content;
97 97
     }
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         $content = '';
105 105
         foreach ($this->lines as $line) {
106 106
             foreach (explode("\n", $line) as $innerLine) {
107
-                $content .= $indent . $indent . $innerLine . "\n";
107
+                $content .= $indent.$indent.$innerLine."\n";
108 108
             }
109 109
         }
110 110
         return $content;
@@ -143,10 +143,10 @@  discard block
 block discarded – undo
143 143
         $parameterStart = '';
144 144
         $additionalIndentation = ' ';
145 145
         $parameterEnd = '';
146
-        if (strlen($parametersStr) > $this->phpDocBuilder->getWrapOn()*0.75) {
147
-            $additionalIndentation = "\n" . $indent . $indent;
146
+        if (strlen($parametersStr) > $this->phpDocBuilder->getWrapOn() * 0.75) {
147
+            $additionalIndentation = "\n".$indent.$indent;
148 148
             $parameterStart = $additionalIndentation;
149
-            $parameterEnd = "\n" . $indent;
149
+            $parameterEnd = "\n".$indent;
150 150
         }
151 151
 
152 152
 
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
             return '';
174 174
         }
175 175
 
176
-        return sprintf (': %s', $this->getPhpReturnType());
176
+        return sprintf(': %s', $this->getPhpReturnType());
177 177
     }
178 178
 
179 179
     /**
Please login to merge, or discard this patch.