Changeset 9958 for sites/trunk/wordpress.org/public_html/wp-content/plugins/official-wordpress-events
- Timestamp:
- 06/11/2020 07:57:24 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/official-wordpress-events/meetup/class-meetup-client.php
r9875 r9958 345 345 * Attempt to extract codes and messages from a suspected error response. 346 346 * 347 * @param array $data The data in the response body, parsed as an array. 347 * @param array $data The data in the response body, parsed as an array. May be null for HTTP errors such as 404's. 348 348 * @param int $response_code Optional. The HTTP status code from the response. 349 349 * 350 350 * @return WP_Error 351 351 */ 352 protected function parse_error( array$data, $response_code = 0 ) {352 protected function parse_error( $data, $response_code = 0 ) { 353 353 $error = new WP_Error(); 354 354
Note: See TracChangeset
for help on using the changeset viewer.