Passed
Pull Request — master (#26)
by Scott
02:11
created
src/CloverLoader.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
             return null;
56 56
         }
57 57
         return $this->coveredLines[$file][$line] > 0 ?
58
-            []:
59
-            ['No unit test covering this line']
58
+            [] : ['No unit test covering this line']
60 59
         ;
61 60
     }
62 61
 
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
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
         }
86 86
 
87 87
         if (!empty($this->invalidLines[$file][$lineNumber])) {
88
-             $errors = array_merge($errors, $this->invalidLines[$file][$lineNumber]);
88
+                $errors = array_merge($errors, $this->invalidLines[$file][$lineNumber]);
89 89
         }
90 90
 
91 91
         return $errors;
Please login to merge, or discard this patch.
tests/CoverageCheckTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         $xmlReport->method('getErrorsOnLine')
32 32
             ->will(
33 33
                 $this->returnCallback(
34
-                    function () {
34
+                    function() {
35 35
                         $file = func_get_arg(0);
36 36
                         $line = func_get_arg(1);
37 37
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         $xmlReport->method('getErrorsOnLine')
91 91
             ->will(
92 92
                 $this->returnCallback(
93
-                    function () {
93
+                    function() {
94 94
                         $file = func_get_arg(0);
95 95
                         $line = func_get_arg(1);
96 96
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         $xmlReport->method('getErrorsOnLine')
146 146
             ->will(
147 147
                 $this->returnCallback(
148
-                    function () {
148
+                    function() {
149 149
                         $file = func_get_arg(0);
150 150
                         $line = func_get_arg(1);
151 151
 
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
         $xmlReport->method('getErrorsOnLine')
201 201
             ->will(
202 202
                 $this->returnCallback(
203
-                    function () {
203
+                    function() {
204 204
                         $file = func_get_arg(0);
205 205
                         $line = func_get_arg(1);
206 206
 
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
         $xmlReport->method('getErrorsOnLine')
256 256
             ->will(
257 257
                 $this->returnCallback(
258
-                    function () {
258
+                    function() {
259 259
                         $file = func_get_arg(0);
260 260
                         $line = func_get_arg(1);
261 261
 
Please login to merge, or discard this patch.