Changeset 51531
- Timestamp:
- 08/03/2021 11:07:28 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/class-wp-rest-request.php
r51518 r51531 958 958 * @return bool Whether the parameter is set. 959 959 */ 960 #[ReturnTypeWillChange] 960 961 public function offsetExists( $offset ) { 961 962 $order = $this->get_parameter_order(); … … 978 979 * @return mixed|null Value if set, null otherwise. 979 980 */ 981 #[ReturnTypeWillChange] 980 982 public function offsetGet( $offset ) { 981 983 return $this->get_param( $offset ); … … 990 992 * @param mixed $value Parameter value. 991 993 */ 994 #[ReturnTypeWillChange] 992 995 public function offsetSet( $offset, $value ) { 993 996 $this->set_param( $offset, $value ); … … 1001 1004 * @param string $offset Parameter name. 1002 1005 */ 1006 #[ReturnTypeWillChange] 1003 1007 public function offsetUnset( $offset ) { 1004 1008 $order = $this->get_parameter_order();
Note: See TracChangeset
for help on using the changeset viewer.