Passed
Pull Request — master (#2)
by Austin
03:26 queued 01:41
created
src/routes/security-txt.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @version     v0.3.0
8 8
  */
9 9
 Route::get('/.well-known/security.txt', '\AustinHeap\Security\Txt\SecurityTxtController@show')
10
-     ->name('security.txt');
10
+        ->name('security.txt');
11 11
 
12 12
 Route::get('/security.txt', function () {
13 13
     return redirect()->route('security.txt');
Please login to merge, or discard this patch.
src/SecurityTxtHelper.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -149,12 +149,12 @@
 block discarded – undo
149 149
         }
150 150
 
151 151
         $text = $this->writer
152
-                     ->generate()
153
-                     ->getText();
152
+                        ->generate()
153
+                        ->getText();
154 154
 
155 155
         if ($this->writer->getComments()) {
156 156
             $text .= '# Cache is '.($this->cache ? 'enabled with key "'.$this->cacheKey.'"' : 'disabled').'.'.PHP_EOL.
157
-                     '#'.PHP_EOL;
157
+                        '#'.PHP_EOL;
158 158
         }
159 159
 
160 160
         if ($this->cache) {
Please login to merge, or discard this patch.