Changeset 49197
- Timestamp:
- 10/18/2020 08:52:01 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-walker-category-checklist.php
r48880 r49197 63 63 * @since 2.5.1 64 64 * 65 * @param string $output Used to append additional content (passed by reference).66 * @param object$category The current term object.67 * @param int $depth Depth of the term in reference to parents. Default 0.68 * @param array $args An array of arguments. @see wp_terms_checklist()69 * @param int $id ID of the current term.65 * @param string $output Used to append additional content (passed by reference). 66 * @param WP_Term $category The current term object. 67 * @param int $depth Depth of the term in reference to parents. Default 0. 68 * @param array $args An array of arguments. @see wp_terms_checklist() 69 * @param int $id ID of the current term. 70 70 */ 71 71 public function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) { … … 122 122 * @since 2.5.1 123 123 * 124 * @param string $output Used to append additional content (passed by reference).125 * @param object$category The current term object.126 * @param int $depth Depth of the term in reference to parents. Default 0.127 * @param array $args An array of arguments. @see wp_terms_checklist()124 * @param string $output Used to append additional content (passed by reference). 125 * @param WP_Term $category The current term object. 126 * @param int $depth Depth of the term in reference to parents. Default 0. 127 * @param array $args An array of arguments. @see wp_terms_checklist() 128 128 */ 129 129 public function end_el( &$output, $category, $depth = 0, $args = array() ) { -
trunk/src/wp-admin/includes/class-wp-application-passwords-list-table.php
r49109 r49197 164 164 * @since 5.6.0 165 165 * 166 * @param object$item The current item.166 * @param array $item The current item. 167 167 */ 168 168 public function single_row( $item ) { -
trunk/src/wp-admin/includes/class-wp-list-table.php
r49193 r49197 1373 1373 * @since 3.1.0 1374 1374 * 1375 * @param object $item The current item1375 * @param object|array $item The current item 1376 1376 */ 1377 1377 public function single_row( $item ) { … … 1382 1382 1383 1383 /** 1384 * @param object $item1384 * @param object|array $item 1385 1385 * @param string $column_name 1386 1386 */ … … 1388 1388 1389 1389 /** 1390 * @param object $item1390 * @param object|array $item 1391 1391 */ 1392 1392 protected function column_cb( $item ) {} … … 1397 1397 * @since 3.1.0 1398 1398 * 1399 * @param object $item The current item.1399 * @param object|array $item The current item. 1400 1400 */ 1401 1401 protected function single_row_columns( $item ) { … … 1449 1449 * @since 4.3.0 1450 1450 * 1451 * @param object $item The item being acted upon.1452 * @param string $column_name Current column name.1453 * @param string $primary Primary column name.1451 * @param object|array $item The item being acted upon. 1452 * @param string $column_name Current column name. 1453 * @param string $primary Primary column name. 1454 1454 * @return string The row actions HTML, or an empty string 1455 1455 * if the current column is not the primary column. -
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r49108 r49197 665 665 * @since 4.3.0 666 666 * 667 * @param object$blog Site being acted upon.667 * @param array $blog Site being acted upon. 668 668 * @param string $column_name Current column name. 669 669 * @param string $primary Primary column name. -
trunk/src/wp-admin/includes/deprecated.php
r48520 r49197 1086 1086 * 1087 1087 * @param int $id 1088 * @return object1088 * @return WP_Post 1089 1089 */ 1090 1090 function get_post_to_edit( $id ) { -
trunk/src/wp-admin/includes/user.php
r49118 r49197 490 490 * @since 2.8.0 491 491 * 492 * @param int $user_ID493 * @param object$old_data492 * @param int $user_ID 493 * @param WP_User $old_data 494 494 */ 495 495 function default_password_nag_edit_user( $user_ID, $old_data ) { -
trunk/src/wp-includes/deprecated.php
r49188 r49197 1304 1304 * @link https://developer.wordpress.org/reference/functions/get_all_category_ids/ 1305 1305 * 1306 * @return objectList of all of the category IDs.1306 * @return int[] List of all of the category IDs. 1307 1307 */ 1308 1308 function get_all_category_ids() { -
trunk/src/wp-includes/ms-load.php
r49183 r49197 518 518 * @deprecated 3.9.0 Use get_current_site() instead. 519 519 * 520 * @param object$current_site521 * @return object520 * @param WP_Network $current_site 521 * @return WP_Network 522 522 */ 523 523 function get_current_site_name( $current_site ) { … … 536 536 * @deprecated 3.9.0 537 537 * 538 * @global object$current_site539 * 540 * @return object538 * @global WP_Network $current_site 539 * 540 * @return WP_Network 541 541 */ 542 542 function wpmu_current_site() { -
trunk/src/wp-includes/query.php
r49095 r49197 38 38 * @global WP_Query $wp_query WordPress Query object. 39 39 * 40 * @return object Queried object.40 * @return WP_Term|WP_Post_Type|WP_Post|WP_User|null The queried object. 41 41 */ 42 42 function get_queried_object() { … … 997 997 * @global WP_Query $wp_query WordPress Query object. 998 998 * 999 * @return object999 * @return null 1000 1000 */ 1001 1001 function the_comment() { -
trunk/src/wp-includes/user.php
r49183 r49197 1527 1527 * @since 3.0.0 1528 1528 * 1529 * @param WP_User $user User objectto be cached1529 * @param object|WP_User $user User object or database row to be cached 1530 1530 * @return bool|null Returns false on failure. 1531 1531 */
Note: See TracChangeset
for help on using the changeset viewer.