Completed
Push — master ( 21dc38...17de5c )
by Tomáš
10s
created
src/Config.php 1 patch
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -76,31 +76,31 @@  discard block
 block discarded – undo
76 76
      * @var array<string, mixed>
77 77
      */
78 78
     private $settings = array(
79
-                         'files'           => null,
80
-                         'standards'       => null,
81
-                         'verbosity'       => null,
82
-                         'interactive'     => null,
83
-                         'explain'         => null,
84
-                         'local'           => null,
85
-                         'showSources'     => null,
86
-                         'showProgress'    => null,
87
-                         'tabWidth'        => null,
88
-                         'extensions'      => null,
89
-                         'sniffs'          => null,
90
-                         'ignored'         => null,
91
-                         'reportFile'      => null,
92
-                         'filter'          => null,
93
-                         'bootstrap'       => null,
94
-                         'reports'         => null,
95
-                         'basepath'        => null,
96
-                         'reportWidth'     => null,
97
-                         'errorSeverity'   => null,
98
-                         'warningSeverity' => null,
99
-                         'recordErrors'    => null,
100
-                         'suffix'          => null,
101
-                         'stdin'           => null,
102
-                         'stdinContent'    => null,
103
-                         'stdinPath'       => null,
79
+                            'files'           => null,
80
+                            'standards'       => null,
81
+                            'verbosity'       => null,
82
+                            'interactive'     => null,
83
+                            'explain'         => null,
84
+                            'local'           => null,
85
+                            'showSources'     => null,
86
+                            'showProgress'    => null,
87
+                            'tabWidth'        => null,
88
+                            'extensions'      => null,
89
+                            'sniffs'          => null,
90
+                            'ignored'         => null,
91
+                            'reportFile'      => null,
92
+                            'filter'          => null,
93
+                            'bootstrap'       => null,
94
+                            'reports'         => null,
95
+                            'basepath'        => null,
96
+                            'reportWidth'     => null,
97
+                            'errorSeverity'   => null,
98
+                            'warningSeverity' => null,
99
+                            'recordErrors'    => null,
100
+                            'suffix'          => null,
101
+                            'stdin'           => null,
102
+                            'stdinContent'    => null,
103
+                            'stdinPath'       => null,
104 104
                         );
105 105
 
106 106
     /**
@@ -393,11 +393,11 @@  discard block
 block discarded – undo
393 393
         $this->showProgress    = false;
394 394
         $this->tabWidth        = 0;
395 395
         $this->extensions      = array(
396
-                                  'php' => 'PHP',
397
-                                  'inc' => 'PHP',
398
-                                  'js'  => 'JS',
399
-                                  'css' => 'CSS',
400
-                                 );
396
+                                    'php' => 'PHP',
397
+                                    'inc' => 'PHP',
398
+                                    'js'  => 'JS',
399
+                                    'css' => 'CSS',
400
+                                    );
401 401
         $this->sniffs          = array();
402 402
         $this->ignored         = array();
403 403
         $this->filter          = null;
Please login to merge, or discard this patch.