Changeset 46451
- Timestamp:
- 10/09/2019 04:26:22 AM (5 years ago)
- Location:
- trunk
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ajax-upgrader-skin.php
r46125 r46451 78 78 * 79 79 * @since 4.6.0 80 * @since 5.3.0 Formalized the existing `...$args` parameter by adding it 81 * to the function signature. 80 82 * 81 83 * @param string|WP_Error $errors Errors. … … 111 113 * 112 114 * @since 4.6.0 115 * @since 5.3.0 Formalized the existing `...$args` parameter by adding it 116 * to the function signature. 113 117 * 114 118 * @param string|array|WP_Error $data Log entry data. -
trunk/src/wp-admin/includes/dashboard.php
r46391 r46451 1056 1056 * 1057 1057 * @since 2.5.0 1058 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 1059 * by adding it to the function signature. 1058 1060 * 1059 1061 * @param string $widget_id The widget ID. -
trunk/src/wp-admin/includes/media.php
r46421 r46451 505 505 * 506 506 * @since 2.5.0 507 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 508 * by adding it to the function signature. 507 509 * 508 510 * @global int $body_id -
trunk/src/wp-includes/capabilities.php
r46132 r46451 26 26 * 27 27 * @since 2.0.0 28 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 29 * by adding it to the function signature. 28 30 * 29 31 * @global array $post_type_meta_caps Used to get post type meta capabilities. … … 636 638 * 637 639 * @since 2.0.0 640 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 641 * by adding it to the function signature. 638 642 * 639 643 * @see WP_User::has_cap() … … 669 673 * 670 674 * @since 3.0.0 675 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 676 * by adding it to the function signature. 671 677 * 672 678 * @param int $blog_id Site ID. … … 710 716 * 711 717 * @since 2.9.0 718 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 719 * by adding it to the function signature. 712 720 * 713 721 * @param int|WP_Post $post Post ID or post object. … … 745 753 * 746 754 * @since 3.1.0 755 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 756 * by adding it to the function signature. 747 757 * 748 758 * @param int|WP_User $user User ID or object. -
trunk/src/wp-includes/category-template.php
r46123 r46451 1055 1055 * Retrieve HTML list content for category list. 1056 1056 * 1057 * @since 2.1.0 1058 * @since 5.3.0 Formalized the existing `...$args` parameter by adding it 1059 * to the function signature. 1060 * 1057 1061 * @uses Walker_Category to create HTML list content. 1058 * @since 2.1.01059 1062 * @see Walker::walk() for parameters and return description. 1060 1063 * … … 1075 1078 * Retrieve HTML dropdown (select) content for category list. 1076 1079 * 1080 * @since 2.1.0 1081 * @since 5.3.0 Formalized the existing `...$args` parameter by adding it 1082 * to the function signature. 1083 * 1077 1084 * @uses Walker_CategoryDropdown to create HTML dropdown content. 1078 * @since 2.1.01079 1085 * @see Walker::walk() for parameters and return description. 1080 1086 * -
trunk/src/wp-includes/class-wp-dependency.php
r46124 r46451 88 88 * 89 89 * @since 2.6.0 90 * @since 5.3.0 Formalized the existing `...$args` parameter by adding it 91 * to the function signature. 90 92 * 91 93 * @param ...$args Dependency information. -
trunk/src/wp-includes/class-wp-user.php
r46144 r46451 731 731 * 732 732 * @since 2.0.0 733 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 734 * by adding it to the function signature. 733 735 * 734 736 * @see map_meta_cap() -
trunk/src/wp-includes/class-wp-walker.php
r46442 r46451 178 178 * 179 179 * @since 2.1.0 180 * @since 5.3.0 Formalized the existing `...$args` parameter by adding 181 * it to the function signature. 180 182 * 181 183 * @param array $elements An array of elements. … … 270 272 * 271 273 * @since 2.7.0 274 * @since 5.3.0 Formalized the existing `...$args` parameter by adding 275 * it to the function signature. 272 276 * 273 277 * @param array $elements -
trunk/src/wp-includes/formatting.php
r46396 r46451 4869 4869 * 4870 4870 * @since 2.5.0 4871 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 4872 * by adding it to the function signature. 4873 * 4871 4874 * @link https://secure.php.net/sprintf 4872 4875 * -
trunk/src/wp-includes/functions.php
r46350 r46451 1049 1049 * 1050 1050 * @since 1.5.0 1051 * @since 5.3.0 Formalized the existing and already documented parameters 1052 * by adding `...$args` to the function signature. 1051 1053 * 1052 1054 * @param string|array $key Either a query variable key, or an associative array of query variables. -
trunk/src/wp-includes/plugin.php
r46333 r46451 431 431 * 432 432 * @since 1.2.0 433 * @since 5.3.0 Formalized the existing and already documented `...$arg` parameter 434 * by adding it to the function signature. 433 435 * 434 436 * @global array $wp_filter Stores all of the filters -
trunk/src/wp-includes/post-template.php
r46135 r46451 1531 1531 * Retrieve HTML dropdown (select) content for page list. 1532 1532 * 1533 * @since 2.1.0 1534 * @since 5.3.0 Formalized the existing `...$args` parameter by adding it 1535 * to the function signature. 1536 * 1533 1537 * @uses Walker_PageDropdown to create HTML dropdown content. 1534 * @since 2.1.01535 1538 * @see Walker_PageDropdown::walk() for parameters and return description. 1536 1539 * -
trunk/src/wp-includes/post.php
r46437 r46451 1830 1830 * 1831 1831 * @since 3.0.0 1832 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 1833 * by adding it to the function signature. 1832 1834 * 1833 1835 * @global array $_wp_post_type_features -
trunk/src/wp-includes/theme.php
r46395 r46451 2358 2358 * `editor-styles`, and `wp-block-styles` features were added. 2359 2359 * @since 5.3.0 The `html5` feature now also accepts 'script' and 'style'. 2360 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 2361 * by adding it to the function signature. 2360 2362 * 2361 2363 * @global array $_wp_theme_features … … 2672 2674 * 2673 2675 * @since 3.1.0 2676 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 2677 * by adding it to the function signature. 2674 2678 * 2675 2679 * @global array $_wp_theme_features … … 2792 2796 * 2793 2797 * @since 2.9.0 2798 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 2799 * by adding it to the function signature. 2794 2800 * 2795 2801 * @global array $_wp_theme_features -
trunk/src/wp-includes/widgets.php
r46147 r46451 345 345 * 346 346 * @since 2.2.0 347 * @since 5.3.0 Formalized the existing and already documented `...$params` parameter 348 * by adding it to the function signature. 347 349 * 348 350 * @global array $wp_registered_widgets Uses stored registered widgets. … … 482 484 * 483 485 * @since 2.2.0 486 * @since 5.3.0 Formalized the existing and already documented `...$params` parameter 487 * by adding it to the function signature. 484 488 * 485 489 * @global array $wp_registered_widget_controls … … 557 561 * 558 562 * @since 2.8.0 563 * @since 5.3.0 Formalized the existing and already documented `...$params` parameter 564 * by adding it to the function signature. 559 565 * 560 566 * @global array $wp_registered_widget_updates … … 589 595 * 590 596 * @since 2.8.0 597 * @since 5.3.0 Formalized the existing and already documented `...$params` parameter 598 * by adding it to the function signature. 591 599 * 592 600 * @global array $wp_registered_widget_controls -
trunk/src/wp-includes/wp-db.php
r46232 r46451 1281 1281 * @link https://secure.php.net/sprintf Description of syntax. 1282 1282 * @since 2.3.0 1283 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 1284 * by updating the function signature. The second parameter was changed 1285 * from `$args` to `...$args`. 1283 1286 * 1284 1287 * @param string $query Query statement with sprintf()-like placeholders -
trunk/tests/phpunit/includes/abstract-testcase.php
r46221 r46451 900 900 * @since 2.5.0 901 901 * @since 3.8.0 Moved from `Tests_Query_Conditionals` to `WP_UnitTestCase`. 902 * @since 5.3.0 Formalized the existing `...$prop` parameter by adding it 903 * to the function signature. 902 904 * 903 905 * @param string ...$prop Any number of WP_Query properties that are expected to be true for the current request.
Note: See TracChangeset
for help on using the changeset viewer.