Completed
Push — master ( 8a37ca...3b3bf7 )
by Basil
02:33
created
core/web/Composition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -230,7 +230,7 @@
 block discarded – undo
230 230
             $results = ArrayHelper::searchColumns($results, $key, $value);
231 231
         }
232 232
 
233
-        return empty($results) ? false : key($results);;
233
+        return empty($results) ? false : key($results); ;
234 234
     }
235 235
 
236 236
     private $_keys;
Please login to merge, or discard this patch.
core/helpers/ObjectHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         }
48 48
         
49 49
         if ($throwException) {
50
-            throw new Exception("The given object must be an instance of: " . implode(",", $haystack));
50
+            throw new Exception("The given object must be an instance of: ".implode(",", $haystack));
51 51
         }
52 52
         
53 53
         return false;
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
             }
213 213
         } catch (InvalidParamException $e) {
214 214
             try {
215
-                $staticPath = $module::staticBasePath() . DIRECTORY_SEPARATOR . 'controllers';
215
+                $staticPath = $module::staticBasePath().DIRECTORY_SEPARATOR.'controllers';
216 216
                 foreach (FileHelper::findFiles($staticPath) as $file) {
217 217
                     $files[self::fileToName($staticPath, $file)] = $file;
218 218
                 }
Please login to merge, or discard this patch.
core/tag/tags/LinkTag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     {
58 58
         if (StringHelper::startsWith($value, '//')) {
59 59
             // its an absolute url 
60
-            $value = StringHelper::replaceFirst('//', Url::base(true) . '/', $value);
60
+            $value = StringHelper::replaceFirst('//', Url::base(true).'/', $value);
61 61
             $external = false;
62 62
         } elseif (StringHelper::startsWith($value, '/')) {
63 63
             // its a relative url, keep it like this
Please login to merge, or discard this patch.