Passed
Push — master ( e45b53...cf614d )
by Austin
01:43
created
src/Writer.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
         if (!empty($this->encryption)) {
139 139
             if ($this->comments)
140 140
                 $this->spacer()
141
-                     ->comment('Our PGP key');
141
+                        ->comment('Our PGP key');
142 142
 
143 143
             $this->line('Encryption: ' . trim($this->encryption));
144 144
         }
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
         if (!empty($this->disclosure)) {
147 147
             if ($this->comments)
148 148
                 $this->spacer()
149
-                     ->comment('Our disclosure policy');
149
+                        ->comment('Our disclosure policy');
150 150
 
151 151
             $this->line('Disclosure: ' . trim(ucfirst($this->disclosure)));
152 152
         }
@@ -154,24 +154,24 @@  discard block
 block discarded – undo
154 154
         if (!empty($this->acknowledgement)) {
155 155
             if ($this->comments)
156 156
                 $this->spacer()
157
-                     ->comment('Our public acknowledgement');
157
+                        ->comment('Our public acknowledgement');
158 158
 
159 159
             $this->line('Acknowledgement: ' . trim($this->acknowledgement));
160 160
         }
161 161
 
162 162
         if ($this->debug)
163 163
             $this->spacer()
164
-                 ->comment()
165
-                 ->comment(
164
+                    ->comment()
165
+                    ->comment(
166 166
                     'Generated by "' . (defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : 'php') . '-security-txt"' .
167 167
                     (defined('LARAVEL_SECURITY_TXT_VERSION') ? ' v' . LARAVEL_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? ' v' . PHP_SECURITY_TXT_VERSION : '')) .
168 168
                     ' (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 : '')) . ')')
169
-                 ->comment(
169
+                    ->comment(
170 170
                     'using "php-security-txt"' . (defined('PHP_SECURITY_TXT_VERSION') ? ' v' . PHP_SECURITY_TXT_VERSION : '') .
171 171
                     ' (https://github.com/austinheap/php-security-txt' . (defined('PHP_SECURITY_TXT_VERSION') ? '/releases/tag/v' . PHP_SECURITY_TXT_VERSION : '') . ')')
172
-                 ->comment('in ' . round((microtime(true) - $time) * 1000, 6) . ' seconds on ' . now() . '.')
173
-                 ->comment()
174
-                 ->spacer();
172
+                    ->comment('in ' . round((microtime(true) - $time) * 1000, 6) . ' seconds on ' . now() . '.')
173
+                    ->comment()
174
+                    ->spacer();
175 175
 
176 176
         $output = implode(PHP_EOL, $this->lines);
177 177
 
Please login to merge, or discard this patch.