Completed
Push — master ( d879cb...4ae39a )
by Julián
02:02
created
src/SessionWare.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 
218 218
             $savePathParts = explode(DIRECTORY_SEPARATOR, $savePath);
219 219
             if ($this->sessionName !== 'PHPSESSID' && $this->sessionName !== array_pop($savePathParts)) {
220
-                $savePath .= DIRECTORY_SEPARATOR . $this->sessionName;
220
+                $savePath .= DIRECTORY_SEPARATOR.$this->sessionName;
221 221
             }
222 222
         }
223 223
 
@@ -292,11 +292,11 @@  discard block
 block discarded – undo
292 292
         ];
293 293
 
294 294
         if (trim($this->settings['path']) !== '') {
295
-            $cookieParams[] = 'path=' . $this->settings['path'];
295
+            $cookieParams[] = 'path='.$this->settings['path'];
296 296
         }
297 297
 
298 298
         if (trim($this->settings['domain']) !== '') {
299
-            $cookieParams[] = 'domain=' . $this->settings['domain'];
299
+            $cookieParams[] = 'domain='.$this->settings['domain'];
300 300
         }
301 301
 
302 302
         if ((bool) $this->settings['secure']) {
Please login to merge, or discard this patch.