@@ -83,7 +83,7 @@ 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 | 88 | print_r($lines['uncoveredLines'], true) |
89 | 89 | ; |
@@ -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()); |
@@ -84,7 +84,7 @@ |
||
84 | 84 | $matches = []; |
85 | 85 | if (!preg_match($this->lineRegex, $line, $matches)) { |
86 | 86 | if (preg_match('#^\s{3,}#', $line)) { |
87 | - return $currentLineNumber; |
|
87 | + return $currentLineNumber; |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | return false; |
@@ -100,7 +100,7 @@ |
||
100 | 100 | |
101 | 101 | protected function trimLines() |
102 | 102 | { |
103 | - array_walk_recursive($this->invalidLines, function (&$item) { |
|
103 | + array_walk_recursive($this->invalidLines, function(&$item) { |
|
104 | 104 | if (is_string($item)) { |
105 | 105 | $item = trim($item); |
106 | 106 | } |