Passed
Push — master ( 5e3eae...0bef9c )
by Austin
02:30 queued 53s
created
src/Writer.php 2 patches
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.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @version     v0.3.0
8 8
  */
9 9
 
10
-declare(strict_types=1);
10
+declare(strict_types = 1);
11 11
 
12 12
 namespace AustinHeap\Security\Txt;
13 13
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @var array
28 28
      */
29
-    private $lines              = [];
29
+    private $lines = [];
30 30
 
31 31
     /**
32 32
      * Create a new Writer instance.
@@ -49,10 +49,10 @@  discard block
 block discarded – undo
49 49
         $comment = trim($comment);
50 50
 
51 51
         if (!empty($comment)) {
52
-            $comment = ' ' . $comment;
52
+            $comment = ' '.$comment;
53 53
         }
54 54
 
55
-        return $this->line(trim('#' . $comment));
55
+        return $this->line(trim('#'.$comment));
56 56
     }
57 57
 
58 58
     /**
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
         }
140 140
 
141 141
         foreach ($this->contacts as $contact) {
142
-            $this->line('Contact: ' . trim($contact));
142
+            $this->line('Contact: '.trim($contact));
143 143
         }
144 144
 
145 145
         if (!empty($this->encryption)) {
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
                      ->comment('Our PGP key');
149 149
             }
150 150
 
151
-            $this->line('Encryption: ' . trim($this->encryption));
151
+            $this->line('Encryption: '.trim($this->encryption));
152 152
         }
153 153
 
154 154
         if (!empty($this->disclosure)) {
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
                      ->comment('Our disclosure policy');
158 158
             }
159 159
 
160
-            $this->line('Disclosure: ' . trim(ucfirst($this->disclosure)));
160
+            $this->line('Disclosure: '.trim(ucfirst($this->disclosure)));
161 161
         }
162 162
 
163 163
         if (!empty($this->acknowledgement)) {
@@ -166,20 +166,20 @@  discard block
 block discarded – undo
166 166
                      ->comment('Our public acknowledgement');
167 167
             }
168 168
 
169
-            $this->line('Acknowledgement: ' . trim($this->acknowledgement));
169
+            $this->line('Acknowledgement: '.trim($this->acknowledgement));
170 170
         }
171 171
 
172 172
         if ($this->debug) {
173 173
             $this->spacer()
174 174
                  ->comment()
175 175
                  ->comment(
176
-                    'Generated by "' . (defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : 'php') . '-security-txt"' .
177
-                    (defined('LARAVEL_SECURITY_TXT_VERSION') ? ' v' . LARAVEL_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? ' v' . PHP_SECURITY_TXT_VERSION : '')) .
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 : '')) . ')')
176
+                    'Generated by "'.(defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : 'php').'-security-txt"'.
177
+                    (defined('LARAVEL_SECURITY_TXT_VERSION') ? ' v'.LARAVEL_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? ' v'.PHP_SECURITY_TXT_VERSION : '')).
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 179
                  ->comment(
180
-                    'using "php-security-txt"' . (defined('PHP_SECURITY_TXT_VERSION') ? ' v' . PHP_SECURITY_TXT_VERSION : '') .
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() . '.')
180
+                    'using "php-security-txt"'.(defined('PHP_SECURITY_TXT_VERSION') ? ' v'.PHP_SECURITY_TXT_VERSION : '').
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 183
                  ->comment()
184 184
                  ->spacer();
185 185
         }
Please login to merge, or discard this patch.