Completed
Push — master ( 4f9ab4...d01c5a )
by Nicolaas
02:35
created
code/api/CountryURLProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -77,14 +77,14 @@
 block discarded – undo
77 77
             }
78 78
             $parsedUrl['path'] = implode('/', $pathParts);
79 79
             $newURL =
80
-                $parsedUrl['scheme'] .
81
-                '://' .
80
+                $parsedUrl['scheme'].
81
+                '://'.
82 82
                 Controller::join_links(
83 83
                     $parsedUrl['host'],
84 84
                     $parsedUrl['path']
85 85
                 );
86 86
             if (isset($parsedUrl['query'])) {
87
-                $newURL = $newURL . '?' . $parsedUrl['query'];
87
+                $newURL = $newURL.'?'.$parsedUrl['query'];
88 88
             }
89 89
         }
90 90
         if ($oldURL !== $newURL) {
Please login to merge, or discard this patch.