Changeset 48238
- Timestamp:
- 06/30/2020 07:48:48 PM (4 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/IXR/class-IXR-client.php
r48204 r48238 63 63 * @since 5.5.0 Formalized the existing `...$args` parameter by adding it 64 64 * to the function signature. 65 * 66 * @return bool 65 67 */ 66 68 function query( ...$args ) -
trunk/src/wp-includes/IXR/class-IXR-clientmulticall.php
r48204 r48238 45 45 * @since 5.5.0 Formalized the existing `...$args` parameter by adding it 46 46 * to the function signature. 47 * 48 * @return bool 47 49 */ 48 50 function query( ...$args ) -
trunk/src/wp-includes/class-wp-http-ixr-client.php
r47219 r48238 47 47 48 48 /** 49 * @since 3.1.0 50 * @since 5.5.0 Formalized the existing `...$args` parameter by adding it 51 * to the function signature. 52 * 49 53 * @return bool 50 54 */ 51 public function query() { 52 $args = func_get_args(); 55 public function query( ...$args ) { 53 56 $method = array_shift( $args ); 54 57 $request = new IXR_Request( $method, $args );
Note: See TracChangeset
for help on using the changeset viewer.