|
@@ -52,10 +52,10 @@ discard block |
|
|
block discarded – undo |
|
52
|
52
|
$comment = trim($comment); |
|
53
|
53
|
|
|
54
|
54
|
if (!empty($comment)) { |
|
55
|
|
- $comment = ' ' . $comment; |
|
|
55
|
+ $comment = ' '.$comment; |
|
56
|
56
|
} |
|
57
|
57
|
|
|
58
|
|
- return $this->line(trim('#' . $comment)); |
|
|
58
|
+ return $this->line(trim('#'.$comment)); |
|
59
|
59
|
} |
|
60
|
60
|
|
|
61
|
61
|
/** |
|
@@ -145,7 +145,7 @@ discard block |
|
|
block discarded – undo |
|
145
|
145
|
} |
|
146
|
146
|
|
|
147
|
147
|
foreach (array_keys($this->contacts) as $contact) { |
|
148
|
|
- $this->line('Contact: ' . trim($contact)); |
|
|
148
|
+ $this->line('Contact: '.trim($contact)); |
|
149
|
149
|
} |
|
150
|
150
|
|
|
151
|
151
|
if (!empty($this->encryption)) { |
|
@@ -154,7 +154,7 @@ discard block |
|
|
block discarded – undo |
|
154
|
154
|
->comment('Our PGP key'); |
|
155
|
155
|
} |
|
156
|
156
|
|
|
157
|
|
- $this->line('Encryption: ' . trim($this->encryption)); |
|
|
157
|
+ $this->line('Encryption: '.trim($this->encryption)); |
|
158
|
158
|
} |
|
159
|
159
|
|
|
160
|
160
|
if (!empty($this->disclosure)) { |
|
@@ -163,7 +163,7 @@ discard block |
|
|
block discarded – undo |
|
163
|
163
|
->comment('Our disclosure policy'); |
|
164
|
164
|
} |
|
165
|
165
|
|
|
166
|
|
- $this->line('Disclosure: ' . trim(ucfirst($this->disclosure))); |
|
|
166
|
+ $this->line('Disclosure: '.trim(ucfirst($this->disclosure))); |
|
167
|
167
|
} |
|
168
|
168
|
|
|
169
|
169
|
if (!empty($this->acknowledgement)) { |
|
@@ -172,22 +172,22 @@ discard block |
|
|
block discarded – undo |
|
172
|
172
|
->comment('Our public acknowledgement'); |
|
173
|
173
|
} |
|
174
|
174
|
|
|
175
|
|
- $this->line('Acknowledgement: ' . trim($this->acknowledgement)); |
|
|
175
|
+ $this->line('Acknowledgement: '.trim($this->acknowledgement)); |
|
176
|
176
|
} |
|
177
|
177
|
|
|
178
|
178
|
if ($this->debug && isset($time)) { |
|
179
|
179
|
$this->spacer() |
|
180
|
180
|
->comment() |
|
181
|
181
|
->comment( |
|
182
|
|
- 'Generated by "' . (defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : (defined('WORDPRESS_SECURITY_TXT_VERSION') ? 'wordpress' : 'php')) . '-security-txt"' . |
|
183
|
|
- (defined('LARAVEL_SECURITY_TXT_VERSION') ? ' v' . LARAVEL_SECURITY_TXT_VERSION : (defined('WORDPRESS_SECURITY_TXT_VERSION') ? ' v' . WORDPRESS_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? ' v' . PHP_SECURITY_TXT_VERSION : ''))) . |
|
184
|
|
- ' (https://github.com/austinheap/' . (defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : (defined('WORDPRESS_SECURITY_TXT_VERSION') ? 'wordpress' : 'php')) . '-security-txt' . (defined('LARAVEL_SECURITY_TXT_VERSION') ? '/releases/tag/v' . LARAVEL_SECURITY_TXT_VERSION : (defined('WORDPRESS_SECURITY_TXT_VERSION') ? '/releases/tag/v' . WORDPRESS_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? '/releases/tag/v' . PHP_SECURITY_TXT_VERSION : ''))) . ')'); |
|
|
182
|
+ 'Generated by "'.(defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : (defined('WORDPRESS_SECURITY_TXT_VERSION') ? 'wordpress' : 'php')).'-security-txt"'. |
|
|
183
|
+ (defined('LARAVEL_SECURITY_TXT_VERSION') ? ' v'.LARAVEL_SECURITY_TXT_VERSION : (defined('WORDPRESS_SECURITY_TXT_VERSION') ? ' v'.WORDPRESS_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? ' v'.PHP_SECURITY_TXT_VERSION : ''))). |
|
|
184
|
+ ' (https://github.com/austinheap/'.(defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : (defined('WORDPRESS_SECURITY_TXT_VERSION') ? 'wordpress' : 'php')).'-security-txt'.(defined('LARAVEL_SECURITY_TXT_VERSION') ? '/releases/tag/v'.LARAVEL_SECURITY_TXT_VERSION : (defined('WORDPRESS_SECURITY_TXT_VERSION') ? '/releases/tag/v'.WORDPRESS_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? '/releases/tag/v'.PHP_SECURITY_TXT_VERSION : ''))).')'); |
|
185
|
185
|
if (defined('LARAVEL_SECURITY_TXT_VERSION') || defined('WORDPRESS_SECURITY_TXT_VERSION')) { |
|
186
|
186
|
$this->comment( |
|
187
|
|
- 'using "php-security-txt"' . (defined('PHP_SECURITY_TXT_VERSION') ? ' v' . PHP_SECURITY_TXT_VERSION : '') . |
|
188
|
|
- ' (https://github.com/austinheap/php-security-txt' . (defined('PHP_SECURITY_TXT_VERSION') ? '/releases/tag/v' . PHP_SECURITY_TXT_VERSION : '') . ')'); |
|
|
187
|
+ 'using "php-security-txt"'.(defined('PHP_SECURITY_TXT_VERSION') ? ' v'.PHP_SECURITY_TXT_VERSION : ''). |
|
|
188
|
+ ' (https://github.com/austinheap/php-security-txt'.(defined('PHP_SECURITY_TXT_VERSION') ? '/releases/tag/v'.PHP_SECURITY_TXT_VERSION : '').')'); |
|
189
|
189
|
} |
|
190
|
|
- $this->comment('in ' . round((microtime(true) - $time) * 1000, 6) . ' seconds on ' . date('c') . '.') |
|
|
190
|
+ $this->comment('in '.round((microtime(true) - $time) * 1000, 6).' seconds on '.date('c').'.') |
|
191
|
191
|
->comment() |
|
192
|
192
|
->spacer(); |
|
193
|
193
|
} |