Passed
Push — develop ( eeccb2...6b5814 )
by nguereza
11:11
created
src/Session.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -233,8 +233,8 @@
 block discarded – undo
233 233
             session_name($sessionName);
234 234
         }
235 235
 
236
-        $ttl = (int)$this->config->get('ttl');
237
-        $lifetime = (int)$this->config->get('cookie.lifetime');
236
+        $ttl = (int) $this->config->get('ttl');
237
+        $lifetime = (int) $this->config->get('cookie.lifetime');
238 238
         $path = $this->config->get('cookie.path');
239 239
         $domain = $this->config->get('cookie.domain');
240 240
         $secure = $this->config->get('cookie.secure');
Please login to merge, or discard this patch.
src/Storage/LocalStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
      * {@inheritdoc}
104 104
      * @see SessionHandlerInterface
105 105
      */
106
-    public function read(string $sid): string|false
106
+    public function read(string $sid): string | false
107 107
     {
108 108
         $file = $this->getSessionFile($sid);
109 109
 
Please login to merge, or discard this patch.
src/Storage/NullStorage.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
      * {@inheritdoc}
58 58
      * @see SessionHandlerInterface
59 59
      */
60
-    public function read(string $sid): string|false
60
+    public function read(string $sid): string | false
61 61
     {
62 62
         return '';
63 63
     }
Please login to merge, or discard this patch.
src/Storage/ApcuStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
      * {@inheritdoc}
77 77
      * @see SessionHandlerInterface
78 78
      */
79
-    public function read(string $sid): string|false
79
+    public function read(string $sid): string | false
80 80
     {
81 81
         $success = false;
82 82
         /** @var mixed */
Please login to merge, or discard this patch.