Completed
Pull Request — master (#408)
by
unknown
45s
created
src/CacheKey.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -367,6 +367,6 @@
 block discarded – undo
367 367
 
368 368
     protected function getPathSlug() : string
369 369
     {
370
-    	return URL::to('/');
370
+        return URL::to('/');
371 371
     }
372 372
 }
Please login to merge, or discard this patch.
tests/Feature/PaginationTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -88,15 +88,15 @@
 block discarded – undo
88 88
     }
89 89
 
90 90
     public function testPaginationUrlIsCorrect() {
91
-    	$this->baseUrl = 'https://test.local';
91
+        $this->baseUrl = 'https://test.local';
92 92
 
93
-    	$this->visit("pagination-test2?custom-page=2")
94
-		    ->see('https://test.local/pagination-test2?custom-page=1');
93
+        $this->visit("pagination-test2?custom-page=2")
94
+            ->see('https://test.local/pagination-test2?custom-page=1');
95 95
 
96
-    	$this->baseUrl = 'https://changed.local';
96
+        $this->baseUrl = 'https://changed.local';
97 97
 
98
-    	$this->visit("pagination-test2?custom-page=2")
99
-	        ->see('https://changed.local/pagination-test2?custom-page=1');
98
+        $this->visit("pagination-test2?custom-page=2")
99
+            ->see('https://changed.local/pagination-test2?custom-page=1');
100 100
 
101 101
     }
102 102
 }
Please login to merge, or discard this patch.