diff --git a/src/wp-includes/rest-api/class-wp-rest-request.php b/src/wp-includes/rest-api/class-wp-rest-request.php
index 4d4936b..9655321 100644
|
a
|
b
|
|
| 16 | 16 | * used in that manner. It does not use ArrayObject (as we cannot rely on SPL), |
| 17 | 17 | * so be aware it may have non-array behaviour in some cases. |
| 18 | 18 | * |
| | 19 | * Also, when using features provided by ArrayAccess, be aware your request |
| | 20 | * values may not be those you expect them to be. In a request with GET id=1 |
| | 21 | * and POST id=2, $request['id'] will be 2, not 1. Use the more precise |
| | 22 | * get_url_param(), get_body_param() and related methods when you need precision. |
| | 23 | * |
| 19 | 24 | * @since 4.4.0 |
| 20 | 25 | * |
| 21 | 26 | * @see ArrayAccess |