@@ -163,11 +163,11 @@ |
||
| 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 | |
@@ -83,9 +83,9 @@ discard block |
||
| 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 |
||
| 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()); |