Completed
Pull Request — master (#10)
by Scott
02:02
created
src/functions.php 1 patch
Spacing   +2 added lines, -2 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());
Please login to merge, or discard this patch.
src/PhpStanLoader.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.