Changeset 59896
- Timestamp:
- 03/02/2025 12:41:48 AM (3 months ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/misc.php
r59800 r59896 626 626 * 627 627 * @param string $content 628 * @return array628 * @return string[] Array of function names. 629 629 */ 630 630 function wp_doc_link_parse( $content ) { -
trunk/src/wp-admin/includes/post.php
r58983 r59896 494 494 * @param array|null $post_data Optional. The array of post data to process. 495 495 * Defaults to the `$_POST` superglobal. 496 * @return array 496 * @return array { 497 * An array of updated, skipped, and locked post IDs. 498 * 499 * @type int[] $updated An array of updated post IDs. 500 * @type int[] $skipped An array of skipped post IDs. 501 * @type int[] $locked An array of locked post IDs. 502 * } 497 503 */ 498 504 function bulk_edit_posts( $post_data = null ) { … … 1212 1218 * @param array|false $q Optional. Array of query variables to use to build the query. 1213 1219 * Defaults to the `$_GET` superglobal. 1214 * @return array1220 * @return string[] An array of all the statuses for the queried post type. 1215 1221 */ 1216 1222 function wp_edit_posts_query( $q = false ) { … … 1384 1390 * @param array|false $q Optional. Array of query variables to use to build the query. 1385 1391 * Defaults to the `$_GET` superglobal. 1386 * @return array 1392 * @return array { 1393 * Array containing the post mime types and available post mime types. 1394 * 1395 * @type array[] $post_mime_types Post mime types. 1396 * @type string[] $avail_post_mime_types Available post mime types. 1397 * } 1387 1398 */ 1388 1399 function wp_edit_attachments_query( $q = false ) { -
trunk/src/wp-admin/includes/user.php
r57120 r59896 314 314 315 315 /** 316 * Filters the user's drafts query string.316 * Filters the SQL query string for the user's drafts query. 317 317 * 318 318 * @since 2.0.0 -
trunk/src/wp-includes/script-loader.php
r59823 r59896 2096 2096 * @global bool $concatenate_scripts 2097 2097 * 2098 * @return array2098 * @return string[] Handles of the scripts that were printed. 2099 2099 */ 2100 2100 function print_head_scripts() { … … 2135 2135 * @global bool $concatenate_scripts 2136 2136 * 2137 * @return array2137 * @return string[] Handles of the scripts that were printed. 2138 2138 */ 2139 2139 function print_footer_scripts() { … … 2216 2216 * @global WP_Scripts $wp_scripts 2217 2217 * 2218 * @return array2218 * @return string[] Handles of the scripts that were printed. 2219 2219 */ 2220 2220 function wp_print_head_scripts() { … … 2281 2281 * @global bool $concatenate_scripts 2282 2282 * 2283 * @return array2283 * @return string[] Handles of the styles that were printed. 2284 2284 */ 2285 2285 function print_admin_styles() { -
trunk/src/wp-includes/update.php
r59865 r59896 892 892 * @since 3.3.0 893 893 * 894 * @return array 894 * @return array { 895 * Fetched update data. 896 * 897 * @type int[] $counts An array of counts for available plugin, theme, and WordPress updates. 898 * @type string $update_title Titles of available updates. 899 * } 895 900 */ 896 901 function wp_get_update_data() { -
trunk/tests/phpunit/includes/abstract-testcase.php
r59729 r59896 1463 1463 * 1464 1464 * @param string $dir Path to the directory to scan. 1465 * @return arrayList of file paths.1465 * @return string[] List of file paths. 1466 1466 */ 1467 1467 public function files_in_dir( $dir ) { … … 1484 1484 * @since 4.0.0 1485 1485 * 1486 * @return arrayList of file paths.1486 * @return string[] List of file paths. 1487 1487 */ 1488 1488 public function scan_user_uploads() {
Note: See TracChangeset
for help on using the changeset viewer.