Passed
Push — master ( cb3f3d...9869d4 )
by Sebastian
08:22
created
src/Diff.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     * @param bool $compare
66 66
     * @return Diff
67 67
     */
68
-    public function setCompareCharacters(bool $compare=true) : Diff
68
+    public function setCompareCharacters(bool $compare = true) : Diff
69 69
     {
70 70
         $this->compareCharacters = $compare;
71 71
         
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     public function toArray() : array
159 159
     {
160
-        if($this->disposed)
160
+        if ($this->disposed)
161 161
         {
162 162
             throw new DiffException(
163 163
                 'The diff has been disposed.',
@@ -187,14 +187,14 @@  discard block
 block discarded – undo
187 187
         // skip any common prefix
188 188
         while ($start <= $end1 && $start <= $end2 && $this->sequence1[$start] === $this->sequence2[$start])
189 189
         {
190
-            $start ++;
190
+            $start++;
191 191
         }
192 192
         
193 193
         // skip any common suffix
194 194
         while ($end1 >= $start && $end2 >= $start && $this->sequence1[$end1] === $this->sequence2[$end2])
195 195
         {
196
-            $end1 --;
197
-            $end2 --;
196
+            $end1--;
197
+            $end2--;
198 198
         }
199 199
         
200 200
         // generate the partial diff
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
         // generate the full diff
204 204
         $diff = array();
205 205
         
206
-        for ($index = 0; $index < $start; $index ++)
206
+        for ($index = 0; $index < $start; $index++)
207 207
         {
208 208
             $diff[] = array($this->sequence1[$index], self::UNMODIFIED);
209 209
         }
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
             $diff[] = array_pop($partialDiff);
214 214
         }
215 215
         
216
-        for ($index = $end1 + 1; $index < $totalSequence; $index ++)
216
+        for ($index = $end1 + 1; $index < $totalSequence; $index++)
217 217
         {
218 218
             $diff[] = array($this->sequence1[$index], self::UNMODIFIED);
219 219
         }
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
     {
237 237
         $split = preg_split('/\R/u', $string);
238 238
         
239
-        if(is_array($split))
239
+        if (is_array($split))
240 240
         {
241 241
             return $split;
242 242
         }
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
     {
260 260
         $split = mb_str_split($string);
261 261
 
262
-        if(is_array($split))
262
+        if (is_array($split))
263 263
         {
264 264
             return $split;
265 265
         }
@@ -290,19 +290,19 @@  discard block
 block discarded – undo
290 290
         $table = array(array_fill(0, $length2 + 1, 0));
291 291
         
292 292
         // loop over the rows
293
-        for ($index1 = 1; $index1 <= $length1; $index1 ++){
293
+        for ($index1 = 1; $index1 <= $length1; $index1++) {
294 294
             
295 295
             // create the new row
296 296
             $table[$index1] = array(0);
297 297
             
298 298
             // loop over the columns
299
-            for ($index2 = 1; $index2 <= $length2; $index2 ++){
299
+            for ($index2 = 1; $index2 <= $length2; $index2++) {
300 300
                 
301 301
                 // store the longest common subsequence length
302 302
                 if ($this->sequence1[$index1 + $start - 1]
303
-                    === $this->sequence2[$index2 + $start - 1]){
303
+                    === $this->sequence2[$index2 + $start - 1]) {
304 304
                         $table[$index1][$index2] = $table[$index1 - 1][$index2 - 1] + 1;
305
-                }else{
305
+                } else {
306 306
                     $table[$index1][$index2] =
307 307
                     max($table[$index1 - 1][$index2], $table[$index1][$index2 - 1]);
308 308
                 }
@@ -341,11 +341,11 @@  discard block
 block discarded – undo
341 341
                 $index1 > 0 && $index2 > 0
342 342
                 && $this->sequence1[$index1 + $start - 1]
343 343
                 === $this->sequence2[$index2 + $start - 1]
344
-            ){
344
+            ) {
345 345
                 // update the diff and the indices
346 346
                 $diff[] = array($this->sequence1[$index1 + $start - 1], self::UNMODIFIED);
347
-                $index1 --;
348
-                $index2 --;
347
+                $index1--;
348
+                $index2--;
349 349
             }
350 350
             elseif (
351 351
                 $index2 > 0
@@ -353,13 +353,13 @@  discard block
 block discarded – undo
353 353
             ) {
354 354
                 // update the diff and the indices
355 355
                 $diff[] = array($this->sequence2[$index2 + $start - 1], self::INSERTED);
356
-                $index2 --;
356
+                $index2--;
357 357
             }
358 358
             else
359 359
             {
360 360
                 // update the diff and the indices
361 361
                 $diff[] = array($this->sequence1[$index1 + $start - 1], self::DELETED);
362
-                $index1 --;
362
+                $index1--;
363 363
             }
364 364
         }
365 365
         
Please login to merge, or discard this patch.