Passed
Pull Request — main (#1805)
by Osma
05:54 queued 01:23
created
src/controller/VocabUrlExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,14 +27,14 @@  discard block
 block discarded – undo
27 27
 
28 28
         // Build base URL
29 29
         if ($vocabid && $vocabid !== '') {
30
-            $url = $vocabid . '/';
30
+            $url = $vocabid.'/';
31 31
         }
32 32
 
33 33
         $url .= $lang;
34 34
 
35 35
         // Add page suffix for non-home pages
36 36
         if ($page !== 'home') {
37
-            $url .= '/' . $page;
37
+            $url .= '/'.$page;
38 38
         }
39 39
 
40 40
         // Build query parameters
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
         // Append parameters if any
54 54
         if (!empty($params)) {
55
-            $url .= '?' . http_build_query($params);
55
+            $url .= '?'.http_build_query($params);
56 56
         }
57 57
 
58 58
         return $url;
Please login to merge, or discard this patch.