Test Failed
Pull Request — master (#13)
by Scott
02:12
created
src/functions.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -163,11 +163,11 @@
 block discarded – undo
163 163
     foreach ($coverage as $filename => $lines) {
164 164
         $output .= "\n\n'$filename' has no coverage for the following lines:\n";
165 165
         foreach ($lines as $line => $message) {
166
-           $output .= "\t $line";
167
-           if (!empty($message)) {
168
-               $output .= " $message";
169
-           }
170
-           $output .= ",\n";
166
+            $output .= "\t $line";
167
+            if (!empty($message)) {
168
+                $output .= " $message";
169
+            }
170
+            $output .= ",\n";
171 171
         }
172 172
     }
173 173
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -83,9 +83,9 @@  discard block
 block discarded – undo
83 83
     $extra = PHP_EOL;
84 84
 
85 85
     if ($lines['uncoveredLines']) {
86
-        $extra = ', Missed lines '.
86
+        $extra = ', Missed lines ' .
87 87
             $extra .
88
-            generateOutput($lines['uncoveredLines']) .  "\n"
88
+            generateOutput($lines['uncoveredLines']) . "\n"
89 89
         ;
90 90
     }
91 91
 
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 function addExceptionHandler()
110 110
 {
111 111
     set_exception_handler(
112
-        function (Exception $exception) {
112
+        function(Exception $exception) {
113 113
             // @codeCoverageIgnoreStart
114 114
             error_log($exception->getMessage());
115 115
             exit($exception->getCode());
Please login to merge, or discard this patch.