Test Failed
Push — master ( a5df7f...b33a68 )
by Jay
11:18 queued 49s
created
src/Session.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
      */
230 230
     public function get($name)
231 231
     {
232
-        $name = (string) $name;
232
+        $name = (string)$name;
233 233
         return $this->has($name) ? $_SESSION[$name] : null;
234 234
     }
235 235
 
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
      */
242 242
     public function has($name)
243 243
     {
244
-        $name = (string) $name;
244
+        $name = (string)$name;
245 245
         return $this->start() && array_key_exists($name, $_SESSION);
246 246
     }
247 247
 
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
     public function set($name, $value)
256 256
     {
257 257
         if ($this->start()) {
258
-            $name = (string) $name;
258
+            $name = (string)$name;
259 259
             $_SESSION[$name] = $value;
260 260
         }
261 261
         return $this;
Please login to merge, or discard this patch.
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.