Completed
Push — master ( a9782f...172d59 )
by Basil
02:03
created
core/helpers/Url.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public static function trailing($url, $slash = '/')
36 36
     {
37
-        return rtrim($url, $slash) . $slash;
37
+        return rtrim($url, $slash).$slash;
38 38
     }
39 39
     
40 40
     /**
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     public static function ensureHttp($url, $https = false)
88 88
     {
89 89
         if (!preg_match("~^(?:f|ht)tps?://~i", $url)) {
90
-            $url = ($https ? "https://" : "http://") . $url;
90
+            $url = ($https ? "https://" : "http://").$url;
91 91
         }
92 92
         
93 93
         return $url;
@@ -156,14 +156,14 @@  discard block
 block discarded – undo
156 156
         if (StringHelper::contains('?', $url)) {
157 157
             // seperator already existing
158 158
             if (StringHelper::endsWith($url, '&') || StringHelper::endsWith($url, '?')) {
159
-                return $url . $append;
159
+                return $url.$append;
160 160
             }
161 161
 
162 162
             // add seperator
163
-            return $url . '&' . $append;
163
+            return $url.'&'.$append;
164 164
         }
165 165
         
166 166
         // use ?
167
-        return $url . '?' . $append;
167
+        return $url.'?'.$append;
168 168
     }
169 169
 }
Please login to merge, or discard this patch.