Changeset 59336
- Timestamp:
- 11/02/2024 02:59:16 PM (2 months ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-privacy-requests-table.php
r56665 r59336 431 431 * 432 432 * @param WP_User_Request $item Item being shown. 433 * @return string Status column markup. 433 * @return string|void Status column markup. Returns a string if no status is found, 434 * otherwise it displays the markup. 434 435 */ 435 436 public function column_status( $item ) { -
trunk/src/wp-includes/class-wp-recovery-mode.php
r55703 r59336 162 162 * 163 163 * @param array $error Error details from `error_get_last()`. 164 * @return true|WP_Error True if the error was handled and headers have already been sent.165 * Or the request will exit to try and catch multiple errors at once.166 * WP_Error if an error occurred preventing it from being handled.164 * @return true|WP_Error|void True if the error was handled and headers have already been sent. 165 * Or the request will exit to try and catch multiple errors at once. 166 * WP_Error if an error occurred preventing it from being handled. 167 167 */ 168 168 public function handle_error( array $error ) { -
trunk/src/wp-includes/class-wp-widget.php
r59196 r59336 139 139 * 140 140 * @param array $instance The settings for the particular instance of the widget. 141 * @return string Default return is 'noform'.141 * @return string|void Default return is 'noform'. 142 142 */ 143 143 public function form( $instance ) {
Note: See TracChangeset
for help on using the changeset viewer.