Passed
Push — develop ( 6f2a0b...94182f )
by nguereza
13:01
created
src/Storage/NullStorage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 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
     }
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      * {@inheritdoc}
94 94
      * @see SessionHandlerInterface
95 95
      */
96
-    public function gc(int $maxLifetime): int|false
96
+    public function gc(int $maxLifetime): int | false
97 97
     {
98 98
         return 0;
99 99
     }
Please login to merge, or discard this patch.
src/Storage/LocalStorage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 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
 
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
      * {@inheritdoc}
160 160
      * @see SessionHandlerInterface
161 161
      */
162
-    public function gc(int $maxLifetime): int|false
162
+    public function gc(int $maxLifetime): int | false
163 163
     {
164 164
         $count = 0;
165 165
         $files = $this->directory->read(DirectoryInterface::FILE);
Please login to merge, or discard this patch.
src/Storage/ApcuStorage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 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 */
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * {@inheritdoc}
118 118
      * @see SessionHandlerInterface
119 119
      */
120
-    public function gc(int $maxLifetime): int|false
120
+    public function gc(int $maxLifetime): int | false
121 121
     {
122 122
         //APCU will do automatically
123 123
 
Please login to merge, or discard this patch.