Changeset 53331
- Timestamp:
- 05/02/2022 01:11:07 PM (2 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/block-editor.php
r53302 r53331 534 534 * @param string[] $preload_paths List of paths to preload. 535 535 * @param WP_Block_Editor_Context $block_editor_context The current block editor context. 536 *537 * @return void538 536 */ 539 537 function block_editor_rest_api_preload( array $preload_paths, $block_editor_context ) { -
trunk/src/wp-includes/class-wp-customize-nav-menus.php
r53279 r53331 1200 1200 * 1201 1201 * @param array $available_item_type Menu item data to output, including title, type, and label. 1202 * @return void1203 1202 */ 1204 1203 protected function print_post_type_container( $available_item_type ) { … … 1241 1240 * 1242 1241 * @since 4.7.0 1243 *1244 * @return void1245 1242 */ 1246 1243 protected function print_custom_links_available_menu_item() { -
trunk/src/wp-includes/pomo/translations.php
r51919 r53331 160 160 * 161 161 * @param Object $other Another Translation object, whose translations will be merged in this one (passed by reference). 162 * @return void163 162 */ 164 163 public function merge_with( &$other ) { -
trunk/src/wp-includes/script-loader.php
r53306 r53331 2934 2934 * @param string $block_name The block-name, including namespace. 2935 2935 * @param array $args An array of arguments [handle,src,deps,ver,media]. 2936 * @return void2937 2936 */ 2938 2937 function wp_enqueue_block_style( $block_name, $args ) { -
trunk/src/wp-includes/theme-templates.php
r52347 r53331 106 106 * 107 107 * @global string $_wp_current_template_content 108 *109 * @return void110 108 */ 111 109 function the_block_template_skip_link() { -
trunk/tests/phpunit/tests/kses.php
r52969 r53331 62 62 * @param string $string Test string for kses. 63 63 * @param string $expect_string Expected result after passing through kses. 64 * @return void65 64 */ 66 65 public function test_wp_filter_post_kses_a( $string, $expect_string ) { … … 170 169 * @param string $string Test string for kses. 171 170 * @param string $expect_string Expected result after passing through kses. 172 * @return void173 171 */ 174 172 public function test_wp_filter_post_kses_abbr( $string, $expect_string ) { -
trunk/tests/phpunit/tests/user/query.php
r53327 r53331 1970 1970 /** 1971 1971 * @ticket 53177 1972 * @dataProvider data_returning_fields 1973 * 1974 * @covers WP_User_Query::prepare_query 1972 1975 * 1973 1976 * @param $field 1974 1977 * @param $expected 1975 *1976 * @return void1977 *1978 * @dataProvider data_returning_fields1979 *1980 * @covers WP_User_Query::prepare_query1981 1978 */ 1982 1979 public function test_returning_fields( $field, $expected_values ) { … … 2102 2099 * @ticket 53177 2103 2100 * 2104 * @return void2105 *2106 2101 * @covers WP_User_Query::prepare_query 2107 2102 */
Note: See TracChangeset
for help on using the changeset viewer.