Completed
Push — master ( c02ec6...849d86 )
by Jay
04:10
created
system/model.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,12 +17,12 @@
 block discarded – undo
17 17
 
18 18
     public function getIsLogue()
19 19
     {
20
-        return (bool) self::$is_logue;
20
+        return (bool)self::$is_logue;
21 21
     }
22 22
 
23 23
     public function setIsLogue($bool = false)
24 24
     {
25
-        self::$is_logue = (bool) $bool;
25
+        self::$is_logue = (bool)$bool;
26 26
         return $this;
27 27
     }
28 28
 
Please login to merge, or discard this patch.
src/Cache/Driver/Redis.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
      */
184 184
     public function getSetting($setting)
185 185
     {
186
-        $setting = (string) $setting;
186
+        $setting = (string)$setting;
187 187
         return isset($this->settings[$setting]) ? $this->settings[$setting] : null;
188 188
     }
189 189
 }
Please login to merge, or discard this patch.
src/Db/Manager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
      */
71 71
     public function set($name = self::DEFAULT_NAME, Db $db = null)
72 72
     {
73
-        $this->instances[(string) $name] = $db;
73
+        $this->instances[(string)$name] = $db;
74 74
         return $this;
75 75
     }
76 76
 
Please login to merge, or discard this patch.
src/Request/Http.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,6 +225,6 @@
 block discarded – undo
225 225
      */
226 226
     public function getHeaders()
227 227
     {
228
-        return (array) (function_exists('getallheaders') ? getallheaders() : false);
228
+        return (array)(function_exists('getallheaders') ? getallheaders() : false);
229 229
     }
230 230
 }
Please login to merge, or discard this patch.