Passed
Pull Request — master (#2)
by Austin
01:36
created
src/Writer.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         if (!empty($this->encryption)) {
146 146
             if ($this->comments) {
147 147
                 $this->spacer()
148
-                     ->comment('Our PGP key');
148
+                        ->comment('Our PGP key');
149 149
             }
150 150
 
151 151
             $this->line('Encryption: ' . trim($this->encryption));
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
         if (!empty($this->disclosure)) {
155 155
             if ($this->comments) {
156 156
                 $this->spacer()
157
-                     ->comment('Our disclosure policy');
157
+                        ->comment('Our disclosure policy');
158 158
             }
159 159
 
160 160
             $this->line('Disclosure: ' . trim(ucfirst($this->disclosure)));
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
         if (!empty($this->acknowledgement)) {
164 164
             if ($this->comments) {
165 165
                 $this->spacer()
166
-                     ->comment('Our public acknowledgement');
166
+                        ->comment('Our public acknowledgement');
167 167
             }
168 168
 
169 169
             $this->line('Acknowledgement: ' . trim($this->acknowledgement));
@@ -171,17 +171,17 @@  discard block
 block discarded – undo
171 171
 
172 172
         if ($this->debug) {
173 173
             $this->spacer()
174
-                 ->comment()
175
-                 ->comment(
174
+                    ->comment()
175
+                    ->comment(
176 176
                     'Generated by "' . (defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : 'php') . '-security-txt"' .
177 177
                     (defined('LARAVEL_SECURITY_TXT_VERSION') ? ' v' . LARAVEL_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? ' v' . PHP_SECURITY_TXT_VERSION : '')) .
178 178
                     ' (https://github.com/austinheap/' . (defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : 'php') . '-security-txt' . (defined('LARAVEL_SECURITY_TXT_VERSION') ? '/releases/tag/v' . LARAVEL_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? '/releases/tag/v' . PHP_SECURITY_TXT_VERSION : '')) . ')')
179
-                 ->comment(
179
+                    ->comment(
180 180
                     'using "php-security-txt"' . (defined('PHP_SECURITY_TXT_VERSION') ? ' v' . PHP_SECURITY_TXT_VERSION : '') .
181 181
                     ' (https://github.com/austinheap/php-security-txt' . (defined('PHP_SECURITY_TXT_VERSION') ? '/releases/tag/v' . PHP_SECURITY_TXT_VERSION : '') . ')')
182
-                 ->comment('in ' . round((microtime(true) - $time) * 1000, 6) . ' seconds on ' . now() . '.')
183
-                 ->comment()
184
-                 ->spacer();
182
+                    ->comment('in ' . round((microtime(true) - $time) * 1000, 6) . ' seconds on ' . now() . '.')
183
+                    ->comment()
184
+                    ->spacer();
185 185
         }
186 186
 
187 187
         $output = implode(PHP_EOL, $this->lines);
Please login to merge, or discard this patch.