Passed
Push — develop ( 73bc77...71bbc5 )
by nguereza
14:43 queued 18s
created
src/Util/OutputHelper.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -109,19 +109,19 @@  discard block
 block discarded – undo
109 109
         $traceStr = '</eol></eol><info>Stack Trace:</end></eol></eol>';
110 110
         foreach ($error->getTrace() as $i => $trace) {
111 111
             $trace += [
112
-               'class' => '',
113
-               'type' => '',
114
-               'function' => '',
115
-               'file' => '',
116
-               'line' => '',
117
-               'args' => []
118
-               ];
112
+                'class' => '',
113
+                'type' => '',
114
+                'function' => '',
115
+                'file' => '',
116
+                'line' => '',
117
+                'args' => []
118
+                ];
119 119
 
120 120
             $symbol = $trace['class'] . $trace['type'] . $trace['function'];
121 121
             $arguments = $this->stringifyArgs($trace['args']);
122 122
 
123 123
             $traceStr .= ' <comment>' . $i . ')</end> <error>'
124
-                   . $symbol . '</end><comment>(' . $arguments . ')</end>';
124
+                    . $symbol . '</end><comment>(' . $arguments . ')</end>';
125 125
 
126 126
             if ($trace['file'] !== '') {
127 127
                 $file = realpath($trace['file']);
@@ -150,13 +150,13 @@  discard block
 block discarded – undo
150 150
         return $this;
151 151
     }
152 152
 
153
-     /**
154
-     * Show options help
155
-     * @param Option[] $items
156
-     * @param string $header
157
-     * @param string $footer
158
-     * @return $this
159
-     */
153
+        /**
154
+         * Show options help
155
+         * @param Option[] $items
156
+         * @param string $header
157
+         * @param string $footer
158
+         * @return $this
159
+         */
160 160
     public function showOptionsHelp(
161 161
         array $items,
162 162
         string $header = '',
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 
203 203
         if (strpos($usage, ' ## ') === false) {
204 204
             $this->writer->eol()->boldGreen('Usage Examples: ', true)
205
-                 ->colors($usage)->eol();
205
+                    ->colors($usage)->eol();
206 206
 
207 207
             return $this;
208 208
         }
@@ -245,8 +245,8 @@  discard block
 block discarded – undo
245 245
         );
246 246
 
247 247
         $this->writer->eol()
248
-                 ->boldGreen('Usage Examples: ', true)
249
-                 ->colors($formatedUsage)->eol();
248
+                    ->boldGreen('Usage Examples: ', true)
249
+                    ->colors($formatedUsage)->eol();
250 250
 
251 251
         return $this;
252 252
     }
Please login to merge, or discard this patch.