Completed
Pull Request — master (#13)
by Scott
02:04
created
src/functions.php 1 patch
Spacing   +4 added lines, -4 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());
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 {
175 175
     $output = "Line $line:\n";
176 176
     if (!empty($message)) {
177
-        foreach ((array)$message as $part) {
177
+        foreach ((array) $message as $part) {
178 178
             $output .= "\t$part\n";
179 179
         }
180 180
     }
Please login to merge, or discard this patch.