Skip to content

Commit 8c3abe3

Browse files
author
Patrik Foldes
committed
fix deprecations messages
1 parent ece44ad commit 8c3abe3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/spec/Paths.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ public function offsetGet($offset)
206206
* @link http://php.net/manual/en/arrayaccess.offsetset.php
207207
* @param mixed $offset The offset to assign the value to.
208208
* @param mixed $value The value to set.
209+
* @return void
209210
*/
210211
#[\ReturnTypeWillChange]
211212
public function offsetSet($offset, $value)
@@ -217,6 +218,7 @@ public function offsetSet($offset, $value)
217218
* Offset to unset
218219
* @link http://php.net/manual/en/arrayaccess.offsetunset.php
219220
* @param mixed $offset The offset to unset.
221+
* @return void
220222
*/
221223
#[\ReturnTypeWillChange]
222224
public function offsetUnset($offset)

src/spec/Responses.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ public function offsetGet($offset)
196196
* @link http://php.net/manual/en/arrayaccess.offsetset.php
197197
* @param mixed $offset The offset to assign the value to.
198198
* @param mixed $value The value to set.
199+
* @return void
199200
*/
200201
#[\ReturnTypeWillChange]
201202
public function offsetSet($offset, $value)
@@ -207,6 +208,7 @@ public function offsetSet($offset, $value)
207208
* Offset to unset
208209
* @link http://php.net/manual/en/arrayaccess.offsetunset.php
209210
* @param mixed $offset The offset to unset.
211+
* @return void
210212
*/
211213
#[\ReturnTypeWillChange]
212214
public function offsetUnset($offset)

0 commit comments

Comments
 (0)