File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 18
18
}
19
19
],
20
20
"require" : {
21
- "php" : " ^7.3|^ 8.0" ,
21
+ "php" : " ^8.0" ,
22
22
"illuminate/support" : " ^8.0" ,
23
23
"illuminate/console" : " ^8.0" ,
24
24
"illuminate/cache" : " ^8.0"
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ public function __set($key, $value)
154
154
*
155
155
* @return bool
156
156
*/
157
- public function offsetExists ($ offset )
157
+ public function offsetExists (mixed $ offset ): bool
158
158
{
159
159
return isset ($ this ->$ offset );
160
160
}
@@ -166,7 +166,7 @@ public function offsetExists($offset)
166
166
*
167
167
* @return mixed
168
168
*/
169
- public function offsetGet ($ offset )
169
+ public function offsetGet (mixed $ offset ): mixed
170
170
{
171
171
return $ this ->$ offset ;
172
172
}
@@ -179,7 +179,7 @@ public function offsetGet($offset)
179
179
*
180
180
* @return void
181
181
*/
182
- public function offsetSet ($ offset , $ value )
182
+ public function offsetSet (mixed $ offset , mixed $ value ): void
183
183
{
184
184
$ this ->$ offset = $ value ;
185
185
}
@@ -191,7 +191,7 @@ public function offsetSet($offset, $value)
191
191
*
192
192
* @return void
193
193
*/
194
- public function offsetUnset ($ offset )
194
+ public function offsetUnset (mixed $ offset ): void
195
195
{
196
196
unset($ this ->$ offset );
197
197
}
You can’t perform that action at this time.
0 commit comments