Completed
Push — master ( 88e3a1...673a19 )
by Michal
03:09
created
src/Translator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
                     $res .= ') : (';
191 191
                     break;
192 192
                 case ';':
193
-                    $res .= str_repeat(')', $parenthesis) . ';';
193
+                    $res .= str_repeat(')', $parenthesis).';';
194 194
                     $parenthesis = 0;
195 195
                     break;
196 196
                 default:
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
         if ($res === ';') {
202 202
             return $res;
203 203
         }
204
-        return '$plural = ' . $res;
204
+        return '$plural = '.$res;
205 205
     }
206 206
 
207 207
     /**
Please login to merge, or discard this patch.