File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,9 @@ public function setUp(): void
95
95
]);
96
96
}
97
97
98
+ /**
99
+ * @return bool
100
+ */
98
101
#[\ReturnTypeWillChange]
99
102
public function close ()
100
103
{
@@ -108,6 +111,9 @@ public function close()
108
111
return $ this ->sessionWritten ;
109
112
}
110
113
114
+ /**
115
+ * @return bool
116
+ */
111
117
#[\ReturnTypeWillChange]
112
118
public function destroy ($ sessionId )
113
119
{
@@ -121,13 +127,19 @@ public function destroy($sessionId)
121
127
return $ this ->sessionWritten = true ;
122
128
}
123
129
130
+ /**
131
+ * @return bool
132
+ */
124
133
#[\ReturnTypeWillChange]
125
134
public function gc ($ maxLifetime )
126
135
{
127
136
// DynamoDB takes care of garbage collection
128
137
return true ;
129
138
}
130
139
140
+ /**
141
+ * @return bool
142
+ */
131
143
#[\ReturnTypeWillChange]
132
144
public function open ($ savePath , $ name )
133
145
{
@@ -136,6 +148,9 @@ public function open($savePath, $name)
136
148
return true ;
137
149
}
138
150
151
+ /**
152
+ * @return string
153
+ */
139
154
#[\ReturnTypeWillChange]
140
155
public function read ($ sessionId )
141
156
{
@@ -161,6 +176,9 @@ public function read($sessionId)
161
176
return $ this ->dataRead ;
162
177
}
163
178
179
+ /**
180
+ * @return bool
181
+ */
164
182
#[\ReturnTypeWillChange]
165
183
public function write ($ sessionId , $ sessionData )
166
184
{
You can’t perform that action at this time.
0 commit comments