Completed
Push — master ( 2e6de9...0cf222 )
by Bill
15s
created
src/Assessors/CyclomaticComplexity/CyclomaticComplexityAssessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     {
50 50
         preg_match("/[ ]function[ ]/", $contents, $matches);
51 51
         if (isset($matches[0])) {
52
-            $this->score ++;
52
+            $this->score++;
53 53
         }
54 54
     }
55 55
 
Please login to merge, or discard this patch.
src/Assessors/GitCommitCount/GitCommitCountAssessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     {
33 33
         $command = $this->buildCommand($filePath);
34 34
         $result = $this->commandService->execute($command);
35
-        if (! isset($result[0])) {
35
+        if (!isset($result[0])) {
36 36
             throw new CommandServiceException('Command resulted in an error (Does specified file exist?)');
37 37
         }
38 38
         $result = trim($result[0]);
Please login to merge, or discard this patch.