Completed
Push — master ( 7f5a29...8ce298 )
by Scott
13s
created
src/functions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  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 88
             print_r($lines['uncoveredLines'], true)
89 89
         ;
@@ -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());
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 
138 138
     $width = (`tput cols` ?: $defaultWidth);
139 139
     $width -= 2 * $tabWidth;
140
-    foreach($arguments as $argument => $class) {
140
+    foreach ($arguments as $argument => $class) {
141 141
         $class = __NAMESPACE__ . '\\' . $class;
142 142
 
143 143
         $argument = '--' . $argument;
Please login to merge, or discard this patch.