@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | if (!empty($this->encryption)) { |
167 | 167 | if ($this->comments) |
168 | 168 | $this->addSpacer() |
169 | - ->addComment('Our PGP key'); |
|
169 | + ->addComment('Our PGP key'); |
|
170 | 170 | |
171 | 171 | $this->addLine('Encryption: ' . trim($this->encryption)); |
172 | 172 | } |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | if (!empty($this->disclosure)) { |
175 | 175 | if ($this->comments) |
176 | 176 | $this->addSpacer() |
177 | - ->addComment('Our disclosure policy'); |
|
177 | + ->addComment('Our disclosure policy'); |
|
178 | 178 | |
179 | 179 | $this->addLine('Disclosure: ' . trim(ucfirst($this->disclosure))); |
180 | 180 | } |
@@ -182,20 +182,20 @@ discard block |
||
182 | 182 | if (!empty($this->acknowledgement)) { |
183 | 183 | if ($this->comments) |
184 | 184 | $this->addSpacer() |
185 | - ->addComment('Our public acknowledgement'); |
|
185 | + ->addComment('Our public acknowledgement'); |
|
186 | 186 | |
187 | 187 | $this->addLine('Acknowledgement: ' . trim($this->acknowledgement)); |
188 | 188 | } |
189 | 189 | |
190 | 190 | if ($this->debug) |
191 | 191 | $this->addSpacer() |
192 | - ->addComment() |
|
193 | - ->addComment('Generated by https://github.com/austinheap/laravel-security-txt') |
|
194 | - ->addComment('in ' . round((microtime(true) - $time) * 1000, 6) . ' seconds on ' . now() . '.') |
|
195 | - ->addComment() |
|
196 | - ->addComment('Cache is ' . ($this->cache ? 'enabled with key "' . $this->cacheKey . '"' : 'disabled') . '.') |
|
197 | - ->addComment() |
|
198 | - ->addSpacer(); |
|
192 | + ->addComment() |
|
193 | + ->addComment('Generated by https://github.com/austinheap/laravel-security-txt') |
|
194 | + ->addComment('in ' . round((microtime(true) - $time) * 1000, 6) . ' seconds on ' . now() . '.') |
|
195 | + ->addComment() |
|
196 | + ->addComment('Cache is ' . ($this->cache ? 'enabled with key "' . $this->cacheKey . '"' : 'disabled') . '.') |
|
197 | + ->addComment() |
|
198 | + ->addSpacer(); |
|
199 | 199 | |
200 | 200 | $output = implode(PHP_EOL, $this->lines); |
201 | 201 |