Passed
Push — master ( f3f345...f2e1be )
by Nicolaas
02:32
created
code/api/CountryURLProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -92,14 +92,14 @@
 block discarded – undo
92 92
             }
93 93
             $parsedUrl['path'] = implode('/', $pathParts);
94 94
             $newURL =
95
-                $parsedUrl['scheme'] .
96
-                '://' .
95
+                $parsedUrl['scheme'].
96
+                '://'.
97 97
                 Controller::join_links(
98 98
                     $parsedUrl['host'],
99 99
                     $parsedUrl['path']
100 100
                 );
101 101
             if (isset($parsedUrl['query'])) {
102
-                $newURL = $newURL . '?' . $parsedUrl['query'];
102
+                $newURL = $newURL.'?'.$parsedUrl['query'];
103 103
             }
104 104
         }
105 105
         if (trim($oldURL, '/') !== trim($newURL, '/')) {
Please login to merge, or discard this patch.