Completed
Pull Request — master (#11)
by Tomáš
03:22
created
src/Config.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -87,33 +87,33 @@  discard block
 block discarded – undo
87 87
      * @var array<string, mixed>
88 88
      */
89 89
     private $settings = array(
90
-                         'files'           => null,
91
-                         'standards'       => null,
92
-                         'verbosity'       => null,
93
-                         'interactive'     => null,
94
-                         'parallel'        => null,
95
-                         'explain'         => null,
96
-                         'local'           => null,
97
-                         'showSources'     => null,
98
-                         'showProgress'    => null,
99
-                         'tabWidth'        => null,
100
-                         'extensions'      => null,
101
-                         'sniffs'          => null,
102
-                         'ignored'         => null,
103
-                         'reportFile'      => null,
104
-                         'generator'       => null,
105
-                         'filter'          => null,
106
-                         'bootstrap'       => null,
107
-                         'reports'         => null,
108
-                         'basepath'        => null,
109
-                         'reportWidth'     => null,
110
-                         'errorSeverity'   => null,
111
-                         'warningSeverity' => null,
112
-                         'recordErrors'    => null,
113
-                         'suffix'          => null,
114
-                         'stdin'           => null,
115
-                         'stdinContent'    => null,
116
-                         'stdinPath'       => null,
90
+                            'files'           => null,
91
+                            'standards'       => null,
92
+                            'verbosity'       => null,
93
+                            'interactive'     => null,
94
+                            'parallel'        => null,
95
+                            'explain'         => null,
96
+                            'local'           => null,
97
+                            'showSources'     => null,
98
+                            'showProgress'    => null,
99
+                            'tabWidth'        => null,
100
+                            'extensions'      => null,
101
+                            'sniffs'          => null,
102
+                            'ignored'         => null,
103
+                            'reportFile'      => null,
104
+                            'generator'       => null,
105
+                            'filter'          => null,
106
+                            'bootstrap'       => null,
107
+                            'reports'         => null,
108
+                            'basepath'        => null,
109
+                            'reportWidth'     => null,
110
+                            'errorSeverity'   => null,
111
+                            'warningSeverity' => null,
112
+                            'recordErrors'    => null,
113
+                            'suffix'          => null,
114
+                            'stdin'           => null,
115
+                            'stdinContent'    => null,
116
+                            'stdinPath'       => null,
117 117
                         );
118 118
 
119 119
     /**
@@ -407,11 +407,11 @@  discard block
 block discarded – undo
407 407
         $this->parallel        = 1;
408 408
         $this->tabWidth        = 0;
409 409
         $this->extensions      = array(
410
-                                  'php' => 'PHP',
411
-                                  'inc' => 'PHP',
412
-                                  'js'  => 'JS',
413
-                                  'css' => 'CSS',
414
-                                 );
410
+                                    'php' => 'PHP',
411
+                                    'inc' => 'PHP',
412
+                                    'js'  => 'JS',
413
+                                    'css' => 'CSS',
414
+                                    );
415 415
         $this->sniffs          = array();
416 416
         $this->ignored         = array();
417 417
         $this->filter          = null;
Please login to merge, or discard this patch.