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