Completed
Pull Request — master (#11)
by Joao
04:29
created
src/JwtSession.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
             setcookie(
86 86
                 self::COOKIE_PREFIX . $this->sessionConfig->getSessionContext(),
87 87
                 null,
88
-                (time()-3000),
88
+                (time() - 3000),
89 89
                 $this->sessionConfig->getCookiePath(),
90 90
                 $this->sessionConfig->getCookieDomain()
91 91
             );
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
             setcookie(
197 197
                 self::COOKIE_PREFIX . $this->sessionConfig->getSessionContext(),
198 198
                 $token,
199
-                (time()+$this->sessionConfig->getTimeoutMinutes()*60) ,
199
+                (time() + $this->sessionConfig->getTimeoutMinutes() * 60),
200 200
                 $this->sessionConfig->getCookiePath(),
201 201
                 $this->sessionConfig->getCookieDomain(),
202 202
                 false,
Please login to merge, or discard this patch.