Completed
Push — master ( fb2729...fa3c5f )
by Gytis
04:31 queued 10s
created
src/Core/Type/TypeFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
         $openScopes = ['<' => 0, '{' => 0, '(' => 0];
148 148
 
149 149
         $len = strlen($rawType);
150
-        for ($pos=0; $pos<=$len-1; $pos++) {
150
+        for ($pos = 0; $pos <= $len - 1; $pos++) {
151 151
             $ch = $rawType[$pos];
152 152
 
153 153
             '<' === $ch && $openScopes['<']++;
Please login to merge, or discard this patch.