Completed
Push — master ( f3ac90...0a96b0 )
by Alexandre
02:22
created
src/Rule/GitRule.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -307,14 +307,14 @@
 block discarded – undo
307 307
      */
308 308
     private function explodeCommitsArrays(array $commits)
309 309
     {
310
-          $explodedCommits = [];
310
+            $explodedCommits = [];
311 311
 
312
-          foreach ($commits as $commit) {
313
-              $explodedCommit = explode('|', $commit);
314
-              $explodedCommit = array_combine(array_slice($this->commitFormatKeys, 0, count($explodedCommit)), $explodedCommit);
315
-              $explodedCommits[$explodedCommit['commitHash']] = $explodedCommit;
316
-          }
312
+            foreach ($commits as $commit) {
313
+                $explodedCommit = explode('|', $commit);
314
+                $explodedCommit = array_combine(array_slice($this->commitFormatKeys, 0, count($explodedCommit)), $explodedCommit);
315
+                $explodedCommits[$explodedCommit['commitHash']] = $explodedCommit;
316
+            }
317 317
 
318
-          return $explodedCommits;
318
+            return $explodedCommits;
319 319
     }
320 320
 }
321 321
\ No newline at end of file
Please login to merge, or discard this patch.
src/Application/Output/JunitHelper.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,10 +28,10 @@
 block discarded – undo
28 28
             $testSuites->appendChild(static::createTestSuite($rule::getRuleName(), $rule->getAssertions(), $xml));
29 29
         }
30 30
 
31
-      $testSuites->setAttribute('name', 'pqi');
32
-      $testSuites->setAttribute('errors', static::sumDomChildsAttribute($testSuites, 'errors'));
33
-      $testSuites->setAttribute('failures', static::sumDomChildsAttribute($testSuites, 'failures'));
34
-      $testSuites->setAttribute('time', static::sumDomChildsAttribute($testSuites, 'time'));
31
+        $testSuites->setAttribute('name', 'pqi');
32
+        $testSuites->setAttribute('errors', static::sumDomChildsAttribute($testSuites, 'errors'));
33
+        $testSuites->setAttribute('failures', static::sumDomChildsAttribute($testSuites, 'failures'));
34
+        $testSuites->setAttribute('time', static::sumDomChildsAttribute($testSuites, 'time'));
35 35
 
36 36
         $xml->appendChild($testSuites);
37 37
 
Please login to merge, or discard this patch.