Passed
Branch master (28c9d6)
by Scott
08:19
created
src/PhpMdLoaderStrict.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace exussum12\CoverageChecker;
3 3
 
4
-use XMLReader;
5
-
6 4
 /**
7 5
  * Class PhpMdLoaderStrict
8 6
  * Used for parsing phpmd xml output
Please login to merge, or discard this patch.
src/DiffLineHandle/ContextLine.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,6 @@
 block discarded – undo
13 13
 
14 14
     public function isValid($line)
15 15
     {
16
-         return true;
16
+            return true;
17 17
     }
18 18
 }
Please login to merge, or discard this patch.
src/PhpCsLoader.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     protected function addInvalidLine($file, $line, $error)
65 65
     {
66 66
         if (!isset($this->invalidLines[$file][$line])) {
67
-             $this->invalidLines[$file][$line] = [];
67
+                $this->invalidLines[$file][$line] = [];
68 68
         }
69 69
         $this->invalidLines[$file][$line][] = $error;
70 70
     }
Please login to merge, or discard this patch.