Completed
Pull Request — master (#30)
by Scott
02:51
created
tests/fixtures/DocBlocks.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 {
6 6
     /**
7 7
      */
8
-    public function testFunction (
8
+    public function testFunction(
9 9
         $param1,
10 10
         $param2
11 11
     ) {
Please login to merge, or discard this patch.
src/PhpCsLoader.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
         }
107 107
 
108 108
         if (!empty($this->invalidLines[$file][$lineNumber])) {
109
-             $errors = array_merge($errors, $this->invalidLines[$file][$lineNumber]);
109
+                $errors = array_merge($errors, $this->invalidLines[$file][$lineNumber]);
110 110
         }
111 111
 
112 112
         $errors = array_merge($errors, $this->getRangeErrors($file, $lineNumber));
Please login to merge, or discard this patch.
src/FileParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     protected function parse(Parser $parser)
41 41
     {
42 42
         $ast = $parser->parse($this->sourceCode);
43
-        if(!is_array($ast)) {
43
+        if (!is_array($ast)) {
44 44
             return;
45 45
         }
46 46
 
Please login to merge, or discard this patch.