Completed
Push — master ( b69760...33f515 )
by Scott
02:22
created
src/PhpCsLoader.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@  discard block
 block discarded – undo
23 23
      * @var array
24 24
      */
25 25
 
26
-     protected $failOnTypes = [
26
+        protected $failOnTypes = [
27 27
         'ERROR',
28
-     ];
28
+        ];
29 29
 
30 30
     /**
31 31
      * PhpCsLoader constructor.
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         $line = $message->line;
77 77
 
78 78
         if (!isset($this->invalidLines[$file][$line])) {
79
-             $this->invalidLines[$file][$line] = [];
79
+                $this->invalidLines[$file][$line] = [];
80 80
         }
81 81
         $this->invalidLines[$file][$line][] = $message->message;
82 82
     }
Please login to merge, or discard this patch.
src/PhpCsLoaderStrict.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
  */
11 11
 class PhpCsLoaderStrict extends PhpCsLoader
12 12
 {
13
-     protected $failOnTypes = [
13
+        protected $failOnTypes = [
14 14
         'ERROR',
15 15
         'WARNING',
16
-     ];
16
+        ];
17 17
 }
Please login to merge, or discard this patch.