File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -153,22 +153,22 @@ public function __set($name, $value)
153
153
$ this ->subject ->{$ name } = $ value ;
154
154
}
155
155
156
- public function offsetExists ($ offset )
156
+ public function offsetExists ($ offset ): bool
157
157
{
158
158
return isset ($ this ->subject [$ offset ]);
159
159
}
160
160
161
- public function offsetGet ($ offset )
161
+ public function offsetGet ($ offset ): mixed
162
162
{
163
163
return $ this ->subject [$ offset ];
164
164
}
165
165
166
- public function offsetSet ($ offset , $ value )
166
+ public function offsetSet ($ offset , $ value ): void
167
167
{
168
168
$ this ->subject [$ offset ] = $ value ;
169
169
}
170
170
171
- public function offsetUnset ($ offset )
171
+ public function offsetUnset ($ offset ): void
172
172
{
173
173
unset($ this ->subject [$ offset ]);
174
174
}
You can’t perform that action at this time.
0 commit comments