Passed
Push — develop ( eeccb2...6b5814 )
by nguereza
11:11
created
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.