diff --git a/composer.json b/composer.json index 17f53c2116f71..61aba821b6be4 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "squizlabs/php_codesniffer": "3.13.5", "wp-coding-standards/wpcs": "~3.3.0", "phpcompatibility/phpcompatibility-wp": "~2.1.3", - "phpstan/phpstan": "2.1.39", + "phpstan/phpstan": "^2.1.39", "yoast/phpunit-polyfills": "^1.1.0" }, "config": { diff --git a/phpstan.neon.dist b/phpstan.neon.dist index e74e6ec1a441b..f8ccc225fb11e 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -10,11 +10,17 @@ includes: # The baseline file includes preexisting errors in the codebase that should be ignored. # https://phpstan.org/user-guide/baseline - - tests/phpstan/baseline.php + - tests/phpstan/baseline.php # level 0. + - tests/phpstan/baseline/level-1.php + - tests/phpstan/baseline/level-2.php + - tests/phpstan/baseline/level-3.php + - tests/phpstan/baseline/level-4.php + - tests/phpstan/baseline/level-5.php + - tests/phpstan/baseline/level-6.php parameters: # https://phpstan.org/user-guide/rule-levels - level: 0 + level: 6 reportUnmatchedIgnoredErrors: true ignoreErrors: @@ -34,3 +40,11 @@ parameters: identifier: function.inner path: src/wp-includes/canonical.php count: 1 + + # Level 1: + - # These are too noisy at the moment. + message: '#Variable \$[a-zA-Z0-9_]+ might not be defined\.#' + + # Level 2: + - # Callable-strings are used as callables in WordPress. + message: '#Default value of the parameter .* is incompatible with type callable.*#' diff --git a/tests/phpstan/README.md b/tests/phpstan/README.md index 967c4a9d0195d..b6f6937c57d65 100644 --- a/tests/phpstan/README.md +++ b/tests/phpstan/README.md @@ -81,3 +81,24 @@ PHPStan can be resource-intensive, especially on large codebases like WordPress. PHPStan caches analysis results to speed up subsequent runs. You can see information about the results cache by running `analyse` with the `-vv` or `-vvv` flag. Sometimes, due to the lack of type information in legacy code, PHPStan may still struggle to analyze certain parts of the codebase. In such cases, you can use the `--debug` flag to disable caching and see which files are causing issues. + +## Triage - using `generate-baselines.sh` + +> [!IMPORTANT] +> This tool is internal to the branch and is not intended for wordpress-core. Use at your own discretion. + +The `generate-baselines.sh` script is a helper tool to generate per-level baseline files for triaging PHPStan errors. It iterates through the specified levels, generates a baseline for each level, and outputs a summary of the results. + +The process relies on iteration, and assumes that the baseline for the previous level has been freshly generated to capture any new/remediated errors on that level before generating the next level's baseline. The maximum level is automatically determined from the `level` parameter in `phpstan.neon` (or `phpstan.neon.dist`). + +### Usage + +To run the script, use the following command: + +```bash +bash tests/phpstan/generate-baselines.sh --all # to generate baselines for all levels +bash tests/phpstan/generate-baselines.sh --start=1 --end=3 # to generate baselines for levels 1 to 3 +bash tests/phpstan/generate-baselines.sh --level=6 # to generate a baseline for level 6 only. ASSUMES that the baseline for the previous level has been freshly generated. +bash tests/phpstan/generate-baselines.sh --summary-only # to only output the summary of results for the existing baselines, without regenerating them. + +``` diff --git a/tests/phpstan/base.neon b/tests/phpstan/base.neon index e3cc0beec92f0..f200c6a4a9153 100644 --- a/tests/phpstan/base.neon +++ b/tests/phpstan/base.neon @@ -105,6 +105,8 @@ parameters: - ../../src/wp-includes/deprecated.php - ../../src/wp-includes/ms-deprecated.php - ../../src/wp-includes/pluggable-deprecated.php + # These files are currently pulled in from Gutenberg, but maybe not long-term. See . + - ../../src/wp-includes/build # These files are sourced by wordpress/gutenberg in `tools/release/sync-stable-blocks.js`. - ../../src/wp-includes/blocks # Third-party libraries. diff --git a/tests/phpstan/baseline/level-1.php b/tests/phpstan/baseline/level-1.php new file mode 100644 index 0000000000000..91ce4a79e0130 --- /dev/null +++ b/tests/phpstan/baseline/level-1.php @@ -0,0 +1,185 @@ + '#^Call to function compact\\(\\) contains possibly undefined variable \\$comment_author\\.$#', + 'identifier' => 'variable.undefined', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function compact\\(\\) contains possibly undefined variable \\$comment_author_email\\.$#', + 'identifier' => 'variable.undefined', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function compact\\(\\) contains possibly undefined variable \\$comment_author_url\\.$#', + 'identifier' => 'variable.undefined', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function compact\\(\\) contains possibly undefined variable \\$user_id\\.$#', + 'identifier' => 'variable.undefined', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$_POST in isset\\(\\) always exists and is not nullable\\.$#', + 'identifier' => 'isset.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constructor of class WP_Filesystem_Direct has an unused parameter \\$arg\\.$#', + 'identifier' => 'constructor.unusedParameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-direct.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$class in empty\\(\\) always exists and is always falsy\\.$#', + 'identifier' => 'empty.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$_POST in isset\\(\\) always exists and is not nullable\\.$#', + 'identifier' => 'isset.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$parent_file in empty\\(\\) always exists and is not falsy\\.$#', + 'identifier' => 'empty.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/themes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant HEADER_IMAGE_HEIGHT not found\\.$#', + 'identifier' => 'constant.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant HEADER_IMAGE_WIDTH not found\\.$#', + 'identifier' => 'constant.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant HEADER_TEXTCOLOR not found\\.$#', + 'identifier' => 'constant.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant HEADER_IMAGE_WIDTH not found\\.$#', + 'identifier' => 'constant.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant HEADER_IMAGE_WIDTH not found\\.$#', + 'identifier' => 'constant.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/showcase.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_edit_link invoked with 1 parameter, 0 required\\.$#', + 'identifier' => 'arguments.count', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_edit_link invoked with 1 parameter, 0 required\\.$#', + 'identifier' => 'arguments.count', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_edit_link invoked with 1 parameter, 0 required\\.$#', + 'identifier' => 'arguments.count', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/template-parts/page/content-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant HEADER_IMAGE_HEIGHT not found\\.$#', + 'identifier' => 'constant.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant HEADER_IMAGE_WIDTH not found\\.$#', + 'identifier' => 'constant.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant HEADER_IMAGE_WIDTH not found\\.$#', + 'identifier' => 'constant.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$addl_path in empty\\(\\) always exists and is always falsy\\.$#', + 'identifier' => 'empty.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/canonical.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$namespace in isset\\(\\) always exists and is not nullable\\.$#', + 'identifier' => 'isset.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$block_type in empty\\(\\) always exists and is not falsy\\.$#', + 'identifier' => 'empty.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-supports.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$loader in isset\\(\\) always exists and is not nullable\\.$#', + 'identifier' => 'isset.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$search in empty\\(\\) always exists and is not falsy\\.$#', + 'identifier' => 'empty.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$status_type_clauses in empty\\(\\) always exists and is not falsy\\.$#', + 'identifier' => 'empty.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$deprecated in empty\\(\\) always exists and is always falsy\\.$#', + 'identifier' => 'empty.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$schema in empty\\(\\) is never defined\\.$#', + 'identifier' => 'empty.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$the_parent in empty\\(\\) always exists and is not falsy\\.$#', + 'identifier' => 'empty.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Variable \\$s in isset\\(\\) is never defined\\.$#', + 'identifier' => 'isset.variable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/template.php', +]; + +return ['parameters' => ['ignoreErrors' => $ignoreErrors]]; diff --git a/tests/phpstan/baseline/level-2.php b/tests/phpstan/baseline/level-2.php new file mode 100644 index 0000000000000..d2bc6fb344259 --- /dev/null +++ b/tests/phpstan/baseline/level-2.php @@ -0,0 +1,1301 @@ + '#^Cannot call method inline_edit\\(\\) on WP_List_Table\\|false\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/edit-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method inline_edit\\(\\) on WP_List_Table\\|false\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to protected property WP_List_Table\\:\\:\\$screen\\.$#', + 'identifier' => 'property.protected', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/erase-personal-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method embed_scripts\\(\\) on WP_List_Table\\|false\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/erase-personal-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method process_bulk_action\\(\\) on WP_List_Table\\|false\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/erase-personal-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to protected property WP_List_Table\\:\\:\\$screen\\.$#', + 'identifier' => 'property.protected', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/export-personal-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method embed_scripts\\(\\) on WP_List_Table\\|false\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/export-personal-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method process_bulk_action\\(\\) on WP_List_Table\\|false\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/export-personal-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to protected property WP_List_Table\\:\\:\\$screen\\.$#', + 'identifier' => 'property.protected', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$download_link on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$name on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$themes on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method get_error_message\\(\\) on array\\|object\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:display_rows\\(\\) invoked with 2 parameters, 0 required\\.$#', + 'identifier' => 'arguments.count', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:single_row\\(\\) invoked with 2 parameters, 1 required\\.$#', + 'identifier' => 'arguments.count', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:single_row\\(\\) invoked with 3 parameters, 1 required\\.$#', + 'identifier' => 'arguments.count', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to an undefined method WP_Upgrader\\:\\:get_name_for_update\\(\\)\\.$#', + 'identifier' => 'method.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Upgrader_Skin\\:\\:\\$language_update\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Upgrader\\:\\:\\$new_plugin_data\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to an undefined method WP_Upgrader\\:\\:plugin_info\\(\\)\\.$#', + 'identifier' => 'method.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to an undefined method WP_Upgrader\\:\\:plugin_info\\(\\)\\.$#', + 'identifier' => 'method.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Upgrader_Skin\\:\\:\\$plugin_active\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Upgrader_Skin\\:\\:\\$plugin_info\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:before\\(\\) invoked with 1 parameter, 0 required\\.$#', + 'identifier' => 'arguments.count', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Upgrader\\:\\:\\$new_theme_data\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to an undefined method WP_Upgrader\\:\\:theme_info\\(\\)\\.$#', + 'identifier' => 'method.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to an undefined method WP_Upgrader\\:\\:theme_info\\(\\)\\.$#', + 'identifier' => 'method.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Upgrader_Skin\\:\\:\\$api\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Upgrader_Skin\\:\\:\\$theme_info\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$download_link on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$name on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$version on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:before\\(\\) invoked with 1 parameter, 0 required\\.$#', + 'identifier' => 'arguments.count', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$attr_title\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$classes\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$menu_item_parent\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$object\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$object_id\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$target\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$title\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$type\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$url\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$xfn\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$classes\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$description\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$menu_item_parent\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$object\\.$#', + 'identifier' => 'property.notFound', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$object_id\\.$#', + 'identifier' => 'property.notFound', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$target\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$title\\.$#', + 'identifier' => 'property.notFound', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$type\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$type_label\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$url\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$xfn\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$current on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$response on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$version on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Theme\\:\\:\\$author\\.$#', + 'identifier' => 'property.notFound', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Theme\\:\\:\\$name\\.$#', + 'identifier' => 'property.notFound', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Theme\\:\\:\\$parent_theme\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Theme\\:\\:\\$version\\.$#', + 'identifier' => 'property.notFound', + 'count' => 5, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to private property WP_Theme\\:\\:\\$stylesheet\\.$#', + 'identifier' => 'property.private', + 'count' => 20, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to private property WP_Theme\\:\\:\\$template\\.$#', + 'identifier' => 'property.private', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Binary operation "\\+" between non\\-empty\\-string and non\\-empty\\-string results in an error\\.$#', + 'identifier' => 'binaryOp.invalid', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-base.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Default value of the parameter \\#1 \\$opt \\(string\\) of method WP_Filesystem_FTPext\\:\\:__construct\\(\\) is incompatible with type array\\.$#', + 'identifier' => 'parameter.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpext.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Filesystem_FTPext\\:\\:\\$link has unknown class FTP\\\\Connection as its type\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpext.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Default value of the parameter \\#1 \\$opt \\(string\\) of method WP_Filesystem_ftpsockets\\:\\:__construct\\(\\) is incompatible with type array\\.$#', + 'identifier' => 'parameter.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpsockets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Default value of the parameter \\#1 \\$opt \\(string\\) of method WP_Filesystem_SSH2\\:\\:__construct\\(\\) is incompatible with type array\\.$#', + 'identifier' => 'parameter.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ssh2.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$info on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$plugins on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Theme\\:\\:\\$name\\.$#', + 'identifier' => 'property.notFound', + 'count' => 8, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$parent on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$term_id on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$info on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$themes on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method get_error_message\\(\\) on array\\|object\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _crop_image_resource\\(\\) has invalid return type GdImage\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _flip_image_resource\\(\\) has invalid return type GdImage\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _rotate_image_resource\\(\\) has invalid return type GdImage\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\$img of function _crop_image_resource\\(\\) has invalid type GdImage\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\$img of function _flip_image_resource\\(\\) has invalid type GdImage\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\$img of function _rotate_image_resource\\(\\) has invalid type GdImage\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$_wp_attachment_image_alt on array\\|WP_Post\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function load_image_to_edit\\(\\) has invalid return type GdImage\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$menu_order on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$post_content on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$post_title on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Part \\$form_fields\\[\'_final\'\\] \\(non\\-empty\\-array\\\\) of encapsed string cannot be cast to string\\.$#', + 'identifier' => 'encapsedStringPart.nonString', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:display\\(\\) invoked with 1 parameter, 0 required\\.$#', + 'identifier' => 'arguments.count', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$privacy_policy_page\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$front_or_home on array\\|WP_Post\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method get_error_message\\(\\) on array\\\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$author on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$downloaded on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$homepage on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$name on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$requires on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$sections on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 5, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$slug on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$tested on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$version on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to private property WP_Block_Type\\:\\:\\$uses_context\\.$#', + 'identifier' => 'property.private', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to private property WP_Block_Type\\:\\:\\$variations\\.$#', + 'identifier' => 'property.private', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$meta_key on object\\|true\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$post_id on object\\|true\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$posts on class\\-string\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var does not specify variable name\\.$#', + 'identifier' => 'varTag.noVariable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Term\\:\\:\\$truncated_name\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to method html\\(\\) on an unknown class WP_Press_This_Plugin\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/press-this.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var does not specify variable name\\.$#', + 'identifier' => 'varTag.noVariable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/profile.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Theme\\:\\:\\$version\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$download_link on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$name on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$version on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var does not specify variable name\\.$#', + 'identifier' => 'varTag.noVariable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$comment_shortcuts on WP_User\\|false\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/user-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @param has invalid value \\(int The height and width avatar dimension in pixels\\. Default 60\\.\\)\\: Unexpected token "The", expected variable at offset 135 on line 6$#', + 'identifier' => 'phpDoc.parseError', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @param has invalid value \\(int The height and width avatar dimensions in pixels\\. Default 65\\.\\)\\: Unexpected token "The", expected variable at offset 121 on line 6$#', + 'identifier' => 'phpDoc.parseError', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/content-status.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @param has invalid value \\(int The width for the image attachment size in pixels\\. Default 848\\.\\)\\: Unexpected token "The", expected variable at offset 270 on line 8$#', + 'identifier' => 'phpDoc.parseError', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @param has invalid value \\(string The default tag description\\.\\)\\: Unexpected token "The", expected variable at offset 139 on line 6$#', + 'identifier' => 'phpDoc.parseError', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/tag.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$description\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$classes\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/icon-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$url\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/icon-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$classes\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$classes\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/icon-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Binary operation "/" between string and 2 results in an error\\.$#', + 'identifier' => 'binaryOp.invalid', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$classes\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$url\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @param has invalid value \\(string The list of classes\\. Default empty string\\.\\)\\: Unexpected token "The", expected variable at offset 116 on line 6$#', + 'identifier' => 'phpDoc.parseError', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$url\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/inc/menu-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var does not specify variable name\\.$#', + 'identifier' => 'varTag.noVariable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\$prompt of function wp_ai_client_prompt\\(\\) has invalid type Message\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ai-client.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\$prompt of function wp_ai_client_prompt\\(\\) has invalid type MessagePart\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ai-client.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post_Type\\:\\:\\$capabilities\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/capabilities.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_category_by_path\\(\\) should return array\\|WP_Error\\|WP_Term\\|null but return statement is missing\\.$#', + 'identifier' => 'return.missing', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$current\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$title\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @param for parameter \\$block_type with type array\\ is incompatible with native type string\\.$#', + 'identifier' => 'parameter.phpDocType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to private property WP_Block_Type\\:\\:\\$uses_context\\.$#', + 'identifier' => 'property.private', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Classic_To_Block_Menu_Converter\\:\\:group_by_parent_id\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-classic-to-block-menu-converter.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Classic_To_Block_Menu_Converter\\:\\:to_blocks\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-classic-to-block-menu-converter.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$themes on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @param for parameter \\$type contains unresolvable type\\.$#', + 'identifier' => 'parameter.unresolvableType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-feed-cache-transient.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Default value of the parameter \\#1 \\$width \\(false\\) of method WP_Image_Editor_GD\\:\\:update_size\\(\\) is incompatible with type int\\.$#', + 'identifier' => 'parameter.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Default value of the parameter \\#2 \\$height \\(false\\) of method WP_Image_Editor_GD\\:\\:update_size\\(\\) is incompatible with type int\\.$#', + 'identifier' => 'parameter.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:_resize\\(\\) has invalid return type GdImage\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\$image of method WP_Image_Editor_GD\\:\\:_save\\(\\) has invalid type GdImage\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Image_Editor_GD\\:\\:\\$image has unknown class GdImage as its type\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:set_imagick_time_limit\\(\\) should return int\\|null but return statement is missing\\.$#', + 'identifier' => 'return.missing', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Navigation_Fallback\\:\\:create_classic_menu_fallback\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-navigation-fallback.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Navigation_Fallback\\:\\:create_default_fallback\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-navigation-fallback.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Navigation_Fallback\\:\\:get_default_fallback_blocks\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-navigation-fallback.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Navigation_Fallback\\:\\:get_fallback_classic_menu\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-navigation-fallback.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Navigation_Fallback\\:\\:get_most_recently_created_nav_menu\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-navigation-fallback.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Navigation_Fallback\\:\\:get_most_recently_published_navigation\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-navigation-fallback.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Navigation_Fallback\\:\\:get_nav_menu_at_primary_location\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-navigation-fallback.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Navigation_Fallback\\:\\:get_nav_menu_with_primary_slug\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-navigation-fallback.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method get_error_code\\(\\) on object\\|false\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$ID on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var above assignment does not specify variable name\\.$#', + 'identifier' => 'varTag.noVariable', + 'count' => 9, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$object_id on array\\|WP_Error\\|WP_Term\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON_Resolver\\:\\:inject_variations_from_block_style_variation_files\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON_Resolver\\:\\:inject_variations_from_block_styles_registry\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON_Resolver\\:\\:recursively_iterate_json\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON_Resolver\\:\\:remove_json_comments\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON_Resolver\\:\\:style_variation_has_scope\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON\\:\\:compute_spacing_sizes\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON\\:\\:get_block_nodes\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON\\:\\:merge_spacing_sizes\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON\\:\\:process_pseudo_selectors\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON\\:\\:remove_indirect_properties\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON\\:\\:resolve_custom_css_format\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON\\:\\:unwrap_shared_block_style_variations\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON\\:\\:update_paragraph_text_indent_selector\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Theme_JSON\\:\\:update_separator_declarations\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Binary operation "\\+" between array\\|int\\\\|int\\<1, max\\> and 1 results in an error\\.$#', + 'identifier' => 'binaryOp.invalid', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$term_id on string\\|WP_Customize_Setting\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$attr_title\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$db_id\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$description\\.$#', + 'identifier' => 'property.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$type\\.$#', + 'identifier' => 'property.notFound', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$type_label\\.$#', + 'identifier' => 'property.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to an undefined property WP_Post\\:\\:\\$url\\.$#', + 'identifier' => 'property.notFound', + 'count' => 5, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Font_Face_Resolver\\:\\:convert_font_face_properties\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Font_Face_Resolver\\:\\:maybe_parse_name_from_comma_separated_list\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Font_Face_Resolver\\:\\:parse_settings\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Font_Face_Resolver\\:\\:to_kebab_case\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unsafe call to private method WP_Font_Face_Resolver\\:\\:to_theme_file_uri\\(\\) through static\\:\\:\\.$#', + 'identifier' => 'staticClassAccess.privateMethod', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$key$#', + 'identifier' => 'parameter.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$url$#', + 'identifier' => 'parameter.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$value$#', + 'identifier' => 'parameter.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @phpstan\\-return has invalid value \\(\\( \\$args\\[\'exit\'\\] is false \\? void \\: never \\)\\)\\: Unexpected token "\\[", expected type \\("is"\\) at offset 3167 on line 50$#', + 'identifier' => 'phpDoc.parseError', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var does not specify variable name\\.$#', + 'identifier' => 'varTag.noVariable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$link_id on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_imagecreatetruecolor\\(\\) has invalid return type GdImage\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\$image of function is_gd_image\\(\\) has invalid type GdImage\\.$#', + 'identifier' => 'class.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$ID on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var does not specify variable name\\.$#', + 'identifier' => 'varTag.noVariable', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$plugins on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method add_data\\(\\) on array\\|object\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to private property WP_Block_Type\\:\\:\\$uses_context\\.$#', + 'identifier' => 'property.private', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Access to private property WP_Block_Type\\:\\:\\$variations\\.$#', + 'identifier' => 'property.private', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$_request$#', + 'identifier' => 'parameter.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-icons-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$auto_add on WP_Term\\|false\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$download_link on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$language_packs on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method add_data\\(\\) on array\\|object\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot call method get_error_message\\(\\) on array\\|object\\.$#', + 'identifier' => 'method.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$post_content on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$post_excerpt on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$post_title on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$parent on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$template_name on array\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access property \\$term_id on array\\|object\\.$#', + 'identifier' => 'property.nonObject', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_users\\(\\) should return string\\|null but return statement is missing\\.$#', + 'identifier' => 'return.missing', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var does not specify variable name\\.$#', + 'identifier' => 'varTag.noVariable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/xmlrpc.php', +]; + +return ['parameters' => ['ignoreErrors' => $ignoreErrors]]; diff --git a/tests/phpstan/baseline/level-3.php b/tests/phpstan/baseline/level-3.php new file mode 100644 index 0000000000000..ba41a41741c8b --- /dev/null +++ b/tests/phpstan/baseline/level-3.php @@ -0,0 +1,629 @@ + '#^Method WP_Automatic_Updater\\:\\:update\\(\\) should return WP_Error\\|null but returns false\\.$#', + 'identifier' => 'return.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access offset \'new_version\' on bool\\.$#', + 'identifier' => 'offsetAccess.nonOffsetAccessible', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_Direct\\:\\:group\\(\\) should return string\\|false but returns int\\<1, max\\>\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-direct.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_Direct\\:\\:owner\\(\\) should return string\\|false but returns int\\<1, max\\>\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-direct.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_SSH2\\:\\:group\\(\\) should return string\\|false but returns int\\<1, max\\>\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ssh2.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_SSH2\\:\\:owner\\(\\) should return string\\|false but returns int\\<1, max\\>\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ssh2.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Filesystem_SSH2\\:\\:\\$link \\(resource\\) does not accept default value of type false\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ssh2.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_status \\(bool\\) of method WP_Post_Comments_List_Table\\:\\:get_per_page\\(\\) should be compatible with parameter \\$comment_status \\(string\\) of method WP_Comments_List_Table\\:\\:get_per_page\\(\\)$#', + 'identifier' => 'method.childParameterType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-post-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset \'preview\' does not exist on array\\{activate\\: non\\-falsy\\-string\\}\\.$#', + 'identifier' => 'offsetAccess.notFound', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_nav_menu_to_edit\\(\\) should return string\\|WP_Error\\|null but returns WP_Term\\|false\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function convert_to_screen\\(\\) should return WP_Screen but returns object\\{id\\: string, base\\: string\\}&stdClass\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Cannot access offset \'new_version\' on bool\\.$#', + 'identifier' => 'offsetAccess.nonOffsetAccessible', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_get_color_for_area\\(\\) should return string but returns false\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_generate_css\\(\\) should return string but empty return statement found\\.$#', + 'identifier' => 'return.empty', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/custom-css.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Template\\:\\:\\$author \\(int\\|null\\) does not accept string\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function filter_block_kses\\(\\) should return array but returns ArrayAccess&WP_Block_Parser_Block\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$args \\(stdClass\\) of method Walker_Nav_Menu\\:\\:end_lvl\\(\\) should be compatible with parameter \\$args \\(array\\) of method Walker\\:\\:end_lvl\\(\\)$#', + 'identifier' => 'method.childParameterType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$args \\(stdClass\\) of method Walker_Nav_Menu\\:\\:start_lvl\\(\\) should be compatible with parameter \\$args \\(array\\) of method Walker\\:\\:start_lvl\\(\\)$#', + 'identifier' => 'method.childParameterType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#4 \\$args \\(stdClass\\) of method Walker_Nav_Menu\\:\\:end_el\\(\\) should be compatible with parameter \\$args \\(array\\) of method Walker\\:\\:end_el\\(\\)$#', + 'identifier' => 'method.childParameterType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#4 \\$args \\(stdClass\\) of method Walker_Nav_Menu\\:\\:start_el\\(\\) should be compatible with parameter \\$args \\(array\\) of method Walker\\:\\:start_el\\(\\)$#', + 'identifier' => 'method.childParameterType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Walker_Nav_Menu\\:\\:\\$tree_type \\(string\\) does not accept default value of type array\\\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Processor\\:\\:extract_full_block_and_advance\\(\\) should return array\\\\|null but returns array\\\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Processor\\:\\:extract_full_block_and_advance\\(\\) should return array\\\\|null but returns array\\\\|string\\|null\\>\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Type\\:\\:__get\\(\\) should return array\\\\|string\\|void\\|null but returns array\\\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block\\:\\:\\$inner_blocks \\(WP_Block_List\\) does not accept default value of type array\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comment_Query\\:\\:\\$date_query \\(WP_Date_Query\\) does not accept default value of type false\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comment_Query\\:\\:\\$meta_query \\(WP_Meta_Query\\) does not accept default value of type false\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Control\\:\\:\\$active_callback \\(callable\\(\\)\\: mixed\\) does not accept default value of type \'\'\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Control\\:\\:\\$settings \\(array\\) does not accept string\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Panel\\:\\:\\$active_callback \\(callable\\(\\)\\: mixed\\) does not accept default value of type \'\'\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Panel\\:\\:\\$theme_supports \\(array\\\\) does not accept default value of type string\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Section\\:\\:\\$active_callback \\(callable\\(\\)\\: mixed\\) does not accept default value of type \'\'\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Setting\\:\\:\\$default \\(string\\) does not accept stdClass\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Setting\\:\\:\\$sanitize_callback \\(callable\\(\\)\\: mixed\\) does not accept default value of type \'\'\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Setting\\:\\:\\$sanitize_js_callback \\(callable\\(\\)\\: mixed\\) does not accept default value of type \'\'\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Setting\\:\\:\\$validate_callback \\(callable\\(\\)\\: mixed\\) does not accept default value of type \'\'\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^WpOrg\\\\Requests\\\\Cookie\\\\Jar does not accept WpOrg\\\\Requests\\\\Cookie\\.$#', + 'identifier' => 'offsetAssign.valueType', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:set_imagick_time_limit\\(\\) should return int\\|null but returns float\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:write_image\\(\\) should return WP_Error\\|true but returns bool\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Image_Editor_Imagick\\:\\:\\$image \\(Imagick\\) does not accept null\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Argument of an invalid type stdClass supplied for foreach, only iterables are supported\\.$#', + 'identifier' => 'foreach.nonIterable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Query\\:\\:\\$date_query \\(WP_Date_Query\\) does not accept default value of type false\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Query\\:\\:\\$meta_query \\(WP_Meta_Query\\) does not accept default value of type false\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Query\\:\\:\\$posts \\(array\\\\|null\\) does not accept array\\\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Rewrite\\:\\:\\$rules \\(array\\\\) does not accept string\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter &\\$stored_results by\\-ref type of method WP_Scripts\\:\\:get_highest_fetchpriority_with_dependents\\(\\) expects array\\, array\\ given\\.$#', + 'identifier' => 'parameterByRef.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-scripts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Query\\:\\:\\$date_query \\(WP_Date_Query\\) does not accept default value of type false\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Query\\:\\:\\$meta_query \\(WP_Meta_Query\\) does not accept default value of type false\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter &\\$query by\\-ref type of method WP_Tax_Query\\:\\:clean_query\\(\\) expects array, WP_Error given\\.$#', + 'identifier' => 'parameterByRef.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter &\\$query by\\-ref type of method WP_Tax_Query\\:\\:transform_query\\(\\) expects array, WP_Error given\\.$#', + 'identifier' => 'parameterByRef.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter &\\$query by\\-ref type of method WP_Tax_Query\\:\\:transform_query\\(\\) expects array, array\\\\|string given\\.$#', + 'identifier' => 'parameterByRef.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Term_Query\\:\\:get_terms\\(\\) should return array\\\\|string but returns int\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Term_Query\\:\\:\\$meta_query \\(WP_Meta_Query\\) does not accept default value of type false\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Term_Query\\:\\:\\$terms \\(array\\) does not accept null\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Term\\:\\:\\$term_group \\(int\\) does not accept default value of type string\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Static property WP_Theme_JSON_Resolver\\:\\:\\$blocks \\(WP_Theme_JSON\\) does not accept null\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Static property WP_Theme_JSON_Resolver\\:\\:\\$core \\(WP_Theme_JSON\\) does not accept null\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Static property WP_Theme_JSON_Resolver\\:\\:\\$i18n_schema \\(array\\) does not accept null\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Static property WP_Theme_JSON_Resolver\\:\\:\\$theme \\(WP_Theme_JSON\\) does not accept null\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Static property WP_Theme_JSON_Resolver\\:\\:\\$user \\(WP_Theme_JSON\\) does not accept null\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Static property WP_Theme_JSON_Resolver\\:\\:\\$user_custom_post_type_id \\(int\\) does not accept null\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter &\\$matched_token_byte_length by\\-ref type of method WP_Token_Map\\:\\:read_token\\(\\) expects int\\|null, \\(float\\|int\\) given\\.$#', + 'identifier' => 'parameterByRef.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-token-map.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User_Query\\:\\:\\$meta_query \\(WP_Meta_Query\\) does not accept default value of type false\\.$#', + 'identifier' => 'property.defaultValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User\\:\\:\\$roles \\(array\\\\) does not accept array\\\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_newTerm\\(\\) should return int\\|IXR_Error but returns string\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property wpdb\\:\\:\\$col_info \\(array\\) does not accept null\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property wpdb\\:\\:\\$last_query \\(string\\) does not accept null\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter &\\$has_noncharacters by\\-ref type of function _wp_scan_utf8\\(\\) expects bool\\|null, int given\\.$#', + 'identifier' => 'parameterByRef.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/compat-utf8.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc type array of property WP_Customize_Nav_Menu_Item_Setting\\:\\:\\$default is not covariant with PHPDoc type string of overridden property WP_Customize_Setting\\:\\:\\$default\\.$#', + 'identifier' => 'property.phpDocType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post\\:\\:\\$post_author \\(string\\) does not accept int\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:filter_wp_get_nav_menu_object\\(\\) should return object\\|null but returns false\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc type array of property WP_Customize_Nav_Menu_Setting\\:\\:\\$default is not covariant with PHPDoc type string of overridden property WP_Customize_Setting\\:\\:\\$default\\.$#', + 'identifier' => 'property.phpDocType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset \'basedir\' does not exist on string\\.$#', + 'identifier' => 'offsetAccess.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset \'baseurl\' does not exist on string\\.$#', + 'identifier' => 'offsetAccess.notFound', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_HTML_Tag_Processor\\:\\:\\$is_closing_tag \\(bool\\) does not accept null\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dropdown_languages\\(\\) should return string but empty return statement found\\.$#', + 'identifier' => 'return.empty', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Translation_Controller\\:\\:get_entries\\(\\) should return array\\ but returns array\\\\>\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n/class-wp-translation-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Translation_File\\:\\:entries\\(\\) should return array\\\\> but returns array\\\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n/class-wp-translation-file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Translation_File\\:\\:\\$entries \\(array\\\\) does not accept array\\\\>\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n/class-wp-translation-file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_meta_cache\\(\\) should return array\\|false but returns bool\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_nav_menu_item\\(\\) should return int\\|WP_Error but returns WP_Term\\|false\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_post_revision_title\\(\\) should return string\\|false but returns array\\{\\}\\|null\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_post_revision_title_expanded\\(\\) should return string\\|false but returns array\\{\\}\\|null\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_post_categories\\(\\) should return array\\|WP_Error\\|false but returns true\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_trash_post\\(\\) should return WP_Post\\|false\\|null but returns array\\{\\}\\|null\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_untrash_post\\(\\) should return WP_Post\\|false\\|null but returns array\\{\\}\\|null\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter &\\$result by\\-ref type of function _page_traverse_name\\(\\) expects array\\, array given\\.$#', + 'identifier' => 'parameterByRef.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc type false of property WP_REST_Attachments_Controller\\:\\:\\$allow_batch is not covariant with PHPDoc type array of overridden property WP_REST_Posts_Controller\\:\\:\\$allow_batch\\.$#', + 'identifier' => 'property.phpDocType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Autosaves_Controller\\:\\:get_item\\(\\) should return WP_Error\\|WP_Post but returns WP_REST_Response\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Autosaves_Controller\\:\\:\\$revisions_controller \\(WP_REST_Revisions_Controller\\) does not accept WP_REST_Controller\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:get_object_type\\(\\) should return string but returns null\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc type false of property WP_REST_Font_Faces_Controller\\:\\:\\$allow_batch is not covariant with PHPDoc type array of overridden property WP_REST_Posts_Controller\\:\\:\\$allow_batch\\.$#', + 'identifier' => 'property.phpDocType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc type false of property WP_REST_Font_Families_Controller\\:\\:\\$allow_batch is not covariant with PHPDoc type array of overridden property WP_REST_Posts_Controller\\:\\:\\$allow_batch\\.$#', + 'identifier' => 'property.phpDocType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$id \\(int\\) of method WP_REST_Global_Styles_Controller\\:\\:prepare_links\\(\\) should be compatible with parameter \\$post \\(WP_Post\\) of method WP_REST_Posts_Controller\\:\\:prepare_links\\(\\)$#', + 'identifier' => 'method.childParameterType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Template_Autosaves_Controller\\:\\:get_item\\(\\) should return WP_Error\\|WP_Post but returns WP_REST_Response\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Template_Autosaves_Controller\\:\\:\\$revisions_controller \\(WP_REST_Revisions_Controller\\) does not accept WP_REST_Controller\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$parent_template_id \\(string\\) of method WP_REST_Template_Revisions_Controller\\:\\:get_parent\\(\\) should be compatible with parameter \\$parent_post_id \\(int\\) of method WP_REST_Revisions_Controller\\:\\:get_parent\\(\\)$#', + 'identifier' => 'method.childParameterType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_preview_post_thumbnail_filter\\(\\) should return array\\|null but returns string\\.$#', + 'identifier' => 'return.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_delete_post_revision\\(\\) should return WP_Post\\|false\\|null but returns array\\{\\}\\|null\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_restore_post_revision\\(\\) should return int\\|false\\|null but returns array\\{\\}\\|null\\.$#', + 'identifier' => 'return.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Taxonomy\\:\\:\\$labels \\(stdClass\\) does not accept array\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_get_current_user\\(\\) should return WP_User but returns array\\|float\\|int\\|string\\|false\\|null\\.$#', + 'identifier' => 'return.type', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_get_current_user\\(\\) should return WP_User but returns null\\.$#', + 'identifier' => 'return.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Static property WP_Widget_Media\\:\\:\\$l10n_defaults \\(array\\\\) does not accept array\\\\.$#', + 'identifier' => 'assign.propertyType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; + +return ['parameters' => ['ignoreErrors' => $ignoreErrors]]; diff --git a/tests/phpstan/baseline/level-4.php b/tests/phpstan/baseline/level-4.php new file mode 100644 index 0000000000000..898237e2b6ea5 --- /dev/null +++ b/tests/phpstan/baseline/level-4.php @@ -0,0 +1,1727 @@ + '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/about.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/credits.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_array\\(\\) with array will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Negated boolean expression is always true\\.$#', + 'identifier' => 'booleanNot.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Negated boolean expression is always true\\.$#', + 'identifier' => 'booleanNot.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post\\:\\:\\$post_type \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post\\:\\:\\$post_status \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_string\\(\\) with bool will always evaluate to false\\.$#', + 'identifier' => 'function.impossibleType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Instanceof between Imagick and Imagick will always evaluate to true\\.$#', + 'identifier' => 'instanceof.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Ternary operator condition is always false\\.$#', + 'identifier' => 'ternary.alwaysFalse', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset mixed on array\\{\\} in empty\\(\\) does not exist\\.$#', + 'identifier' => 'empty.offset', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Static method WP_Internal_Pointers\\:\\:print_js\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Screen\\:\\:\\$post_type \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Right side of && is always true\\.$#', + 'identifier' => 'booleanAnd.rightAlwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Negated boolean expression is always true\\.$#', + 'identifier' => 'booleanNot.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function method_exists\\(\\) with \'ParagonIE_Sodium…\' and \'runtime_speed_test\' will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Negated boolean expression is always true\\.$#', + 'identifier' => 'booleanNot.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_callable\\(\\) with \'exif_read_data\' will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_callable\\(\\) with \'iptcparse\' will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset \'created_timestamp\' on array\\{\\}\\|array\\{lossless\\?\\: mixed, bitrate\\?\\: int, bitrate_mode\\?\\: mixed, filesize\\?\\: int, mime_type\\?\\: mixed, length\\?\\: int, length_formatted\\?\\: mixed, width\\?\\: int, \\.\\.\\.\\} in empty\\(\\) does not exist\\.$#', + 'identifier' => 'empty.offset', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_numeric\\(\\) with float\\|int\\|numeric\\-string will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Taxonomy\\:\\:\\$meta_box_sanitize_cb \\(callable\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Right side of && is always true\\.$#', + 'identifier' => 'booleanAnd.rightAlwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Negated boolean expression is always false\\.$#', + 'identifier' => 'booleanNot.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_preferred_from_update_core\\(\\) never returns array so it can be removed from the return type\\.$#', + 'identifier' => 'return.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^If condition is always false\\.$#', + 'identifier' => 'if.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Ternary operator condition is always true\\.$#', + 'identifier' => 'ternary.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/menu-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site\\:\\:\\$domain \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/my-sites.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset \\(float\\|int\\) on array\\ in isset\\(\\) always exists and is not nullable\\.$#', + 'identifier' => 'isset.offset', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\=\\=\\= between \'update\\-selected\' and mixed~\\(\'activate\'\\|\'activate\\-selected\'\\|\'deactivate\'\\|\'deactivate\\-selected\'\\|\'delete\\-selected\'\\|\'disable\\-auto\\-update\'\\|\'disable\\-auto\\-update\\-selected\'\\|\'enable\\-auto\\-update\'\\|\'enable\\-auto\\-update\\-selected\'\\|\'error_scrape\'\\|\'resume\'\\|\'update\\-selected\'\\) will always evaluate to false\\.$#', + 'identifier' => 'identical.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/plugins.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Left side of && is always true\\.$#', + 'identifier' => 'booleanAnd.leftAlwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/themes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Result of && is always false\\.$#', + 'identifier' => 'booleanAnd.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/themes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$selective_refresh \\(WP_Customize_Selective_Refresh\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/showcase.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/showcase.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/tag.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/tag.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$selective_refresh \\(WP_Customize_Selective_Refresh\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$selective_refresh \\(WP_Customize_Selective_Refresh\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/tag.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/tag.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/taxonomy-post_format.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/taxonomy-post_format.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^If condition is always true\\.$#', + 'identifier' => 'if.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Right side of && is always true\\.$#', + 'identifier' => 'booleanAnd.rightAlwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$selective_refresh \\(WP_Customize_Selective_Refresh\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^If condition is always true\\.$#', + 'identifier' => 'if.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/template-parts/footer/footer-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/front-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$selective_refresh \\(WP_Customize_Selective_Refresh\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/loop-attachment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/loop-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/loop-single.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$selective_refresh \\(WP_Customize_Selective_Refresh\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/tag.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/tag.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/taxonomy-post_format.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/taxonomy-post_format.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$selective_refresh \\(WP_Customize_Selective_Refresh\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/tag.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/tag.php', +]; +$ignoreErrors[] = [ + 'message' => '#^If condition is always true\\.$#', + 'identifier' => 'if.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/singular.php', +]; +$ignoreErrors[] = [ + 'message' => '#^If condition is always true\\.$#', + 'identifier' => 'if.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/template-parts/modal-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/templates/template-cover.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/archive.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Type\\:\\:\\$editor_style_handles \\(array\\\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset 1 on array\\{list\\, list\\\\} on left side of \\?\\? always exists and is not nullable\\.$#', + 'identifier' => 'nullCoalesce.offset', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-style-variations.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\!\\=\\= between null and string will always evaluate to true\\.$#', + 'identifier' => 'notIdentical.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Result of \\|\\| is always true\\.$#', + 'identifier' => 'booleanOr.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/position.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\=\\=\\= between \'sticky\' and \'sticky\' will always evaluate to true\\.$#', + 'identifier' => 'identical.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/position.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Right side of && is always true\\.$#', + 'identifier' => 'booleanAnd.rightAlwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/typography.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Left side of && is always true\\.$#', + 'identifier' => 'booleanAnd.leftAlwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Type\\:\\:\\$render_callback \\(callable\\) in empty\\(\\) is not falsy\\.$#', + 'identifier' => 'empty.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Left side of && is always true\\.$#', + 'identifier' => 'booleanAnd.leftAlwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/canonical.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/capabilities.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_string\\(\\) with string will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-bindings-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^If condition is always false\\.$#', + 'identifier' => 'if.alwaysFalse', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Processor\\:\\:\\$last_error \\(string\\|null\\) is never assigned string so it can be removed from the property type\\.$#', + 'identifier' => 'property.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Negated boolean expression is always true\\.$#', + 'identifier' => 'booleanNot.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-templates-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Negated boolean expression is always true\\.$#', + 'identifier' => 'booleanNot.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Result of \\|\\| is always true\\.$#', + 'identifier' => 'booleanOr.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Negated boolean expression is always false\\.$#', + 'identifier' => 'booleanNot.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Control\\:\\:\\$active_callback \\(callable\\) in empty\\(\\) is not falsy\\.$#', + 'identifier' => 'empty.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Control\\:\\:\\$settings \\(array\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$_changeset_post_id \\(int\\|false\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$_changeset_uuid \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$_post_values \\(array\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$nav_menus \\(WP_Customize_Nav_Menus\\) in empty\\(\\) is not falsy\\.$#', + 'identifier' => 'empty.property', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$widgets \\(WP_Customize_Widgets\\) in empty\\(\\) is not falsy\\.$#', + 'identifier' => 'empty.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Right side of \\|\\| is always true\\.$#', + 'identifier' => 'booleanOr.rightAlwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Panel\\:\\:\\$active_callback \\(callable\\) in empty\\(\\) is not falsy\\.$#', + 'identifier' => 'empty.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Section\\:\\:\\$active_callback \\(callable\\) in empty\\(\\) is not falsy\\.$#', + 'identifier' => 'empty.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Setting\\:\\:\\$_previewed_blog_id \\(int\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$selective_refreshable_widgets \\(array\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Http_Cookie\\:\\:\\$domain \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-cookie.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Http_Cookie\\:\\:\\$name \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-cookie.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Http_Cookie\\:\\:\\$path \\(string\\) on left side of \\?\\? is not nullable\\.$#', + 'identifier' => 'nullCoalesce.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-cookie.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Http_Cookie\\:\\:\\$port \\(int\\|string\\) on left side of \\?\\? is not nullable\\.$#', + 'identifier' => 'nullCoalesce.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-cookie.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Http_Cookie\\:\\:\\$value \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-cookie.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Result of \\|\\| is always false\\.$#', + 'identifier' => 'booleanOr.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-cookie.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:_dispatch_request\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function method_exists\\(\\) with \'Imagick\' and \'setIteratorIndex\' will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_callable\\(\\) with \'exif_read_data\' will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Locale\\:\\:\\$word_count_type \\(string\\) on left side of \\?\\? is not nullable\\.$#', + 'identifier' => 'nullCoalesce.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-locale.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post\\:\\:\\$ID \\(int\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Cookie_Service\\:\\:recovery_mode_hash\\(\\) never returns false so it can be removed from the return type\\.$#', + 'identifier' => 'return.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-cookie-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\!\\=\\= between null and int\\|string will always evaluate to true\\.$#', + 'identifier' => 'notIdentical.alwaysTrue', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:get_marked_for_enqueue\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Comparison operation "\\<\\=" between 0 and int\\<0, max\\>\\|false is always true\\.$#', + 'identifier' => 'smallerOrEqual.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Static method WP_Theme\\:\\:_check_headers_property_has_correct_type\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Static property WP_Theme\\:\\:\\$persistently_cache \\(bool\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Static property WP_User\\:\\:\\$back_compat_keys \\(array\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Right side of && is always true\\.$#', + 'identifier' => 'booleanAnd.rightAlwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Widget\\:\\:\\$alt_option_name \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\=\\=\\= between \'404\' and \'404\' will always evaluate to true\\.$#', + 'identifier' => 'identical.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property wpdb\\:\\:\\$base_prefix \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Right side of && is always false\\.$#', + 'identifier' => 'booleanAnd.rightAlwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_scan_utf8\\(\\) never assigns null to &\\$has_noncharacters so it can be removed from the by\\-ref type\\.$#', + 'identifier' => 'parameterByRef.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/compat-utf8.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_utf8_codepoint_span\\(\\) never assigns null to &\\$found_code_points so it can be removed from the by\\-ref type\\.$#', + 'identifier' => 'parameterByRef.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/compat-utf8.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$nav_menus \\(WP_Customize_Nav_Menus\\) in empty\\(\\) is not falsy\\.$#', + 'identifier' => 'empty.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$nav_menus \\(WP_Customize_Nav_Menus\\) in empty\\(\\) is not falsy\\.$#', + 'identifier' => 'empty.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Partial\\:\\:\\$render_callback \\(callable\\) in empty\\(\\) is not falsy\\.$#', + 'identifier' => 'empty.property', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-partial.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Partial\\:\\:\\$settings \\(array\\\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-partial.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always false\\.$#', + 'identifier' => 'while.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed-rdf.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function method_exists\\(\\) with \'SimplePie_Cache\' and \'register\' will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Comparison operation "\\>\\=" between int\\<70400, 80500\\> and 70300 is always true\\.$#', + 'identifier' => 'greaterOrEqual.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Comparison operation "\\>\\=" between int\\<70400, 80500\\> and 70400 is always true\\.$#', + 'identifier' => 'greaterOrEqual.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Comparison operation "\\>\\=" between int\\<2592000, 31535999\\> and 2592000 is always true\\.$#', + 'identifier' => 'greaterOrEqual.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Comparison operation "\\>\\=" between int\\<31536000, max\\> and 31536000 is always true\\.$#', + 'identifier' => 'greaterOrEqual.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Comparison operation "\\>\\=" between int\\<3600, 86399\\> and 3600 is always true\\.$#', + 'identifier' => 'greaterOrEqual.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Comparison operation "\\>\\=" between int\\<60, 3599\\> and 60 is always true\\.$#', + 'identifier' => 'greaterOrEqual.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Comparison operation "\\>\\=" between int\\<604800, 2591999\\> and 604800 is always true\\.$#', + 'identifier' => 'greaterOrEqual.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Comparison operation "\\>\\=" between int\\<86400, 604799\\> and 86400 is always true\\.$#', + 'identifier' => 'greaterOrEqual.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset 0 on array\\{0\\: non\\-empty\\-string, non_cdata_followed_by_cdata\\: \'\', 1\\: \'\', 2\\: \'\', cdata\\: \'\', 3\\: \'\', 4\\: \'\', non_cdata\\: string, \\.\\.\\.\\}\\|array\\{0\\: non\\-empty\\-string, non_cdata_followed_by_cdata\\: string, 1\\: string, 2\\: string, cdata\\: non\\-falsy\\-string, 3\\: non\\-falsy\\-string, 4\\: non\\-falsy\\-string\\} in isset\\(\\) always exists and is not nullable\\.$#', + 'identifier' => 'isset.offset', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_callable\\(\\) with \'exif_imagetype\' will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset int\\<1, max\\> on non\\-empty\\-list\\ in isset\\(\\) always exists and is not nullable\\.$#', + 'identifier' => 'isset.offset', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Right side of && is always true\\.$#', + 'identifier' => 'booleanAnd.rightAlwaysTrue', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\!\\=\\= between \'Etc\' and \'Africa\'\\|\'America\'\\|\'Antarctica\'\\|\'Arctic\'\\|\'Asia\'\\|\'Atlantic\'\\|\'Australia\'\\|\'Europe\'\\|\'Indian\'\\|\'Pacific\' will always evaluate to true\\.$#', + 'identifier' => 'notIdentical.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function single_cat_title\\(\\) never returns void so it can be removed from the return type\\.$#', + 'identifier' => 'return.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function single_tag_title\\(\\) never returns void so it can be removed from the return type\\.$#', + 'identifier' => 'return.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Negated boolean expression is always true\\.$#', + 'identifier' => 'booleanNot.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-doctype-info.php', +]; +$ignoreErrors[] = [ + 'message' => '#^If condition is always true\\.$#', + 'identifier' => 'if.alwaysTrue', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Left side of && is always true\\.$#', + 'identifier' => 'booleanAnd.leftAlwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Processor\\:\\:bookmark_token\\(\\) never returns false so it can be removed from the return type\\.$#', + 'identifier' => 'return.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 17, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Tag_Processor\\:\\:skip_rawtext\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Tag_Processor\\:\\:skip_script_data\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_HTML_Tag_Processor\\:\\:\\$skip_newline_at \\(int\\|null\\) is never assigned int so it can be removed from the property type\\.$#', + 'identifier' => 'property.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_HTML_Text_Replacement\\:\\:\\$text \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Result of && is always true\\.$#', + 'identifier' => 'booleanAnd.alwaysTrue', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\!\\=\\= between \'STATE_COMPLETE\' and \'STATE_READY\' will always evaluate to true\\.$#', + 'identifier' => 'notIdentical.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\!\\=\\= between \'STATE_INCOMPLETE…\' and \'STATE_READY\' will always evaluate to true\\.$#', + 'identifier' => 'notIdentical.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\!\\=\\= between \'STATE_MATCHED_TAG\' and \'STATE_READY\' will always evaluate to true\\.$#', + 'identifier' => 'notIdentical.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\=\\=\\= between \'STATE_INCOMPLETE…\' and \'STATE_READY\' will always evaluate to false\\.$#', + 'identifier' => 'identical.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Unreachable statement \\- code above always terminates\\.$#', + 'identifier' => 'deadCode.unreachable', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_array\\(\\) with array will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_bind_processor\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_class_processor\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_context_processor\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_each_processor\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_interactive_processor\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_router_region_processor\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_style_processor\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_text_processor\\(\\) is unused\\.$#', + 'identifier' => 'method.unused', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Right side of && is always true\\.$#', + 'identifier' => 'booleanAnd.rightAlwaysTrue', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post\\:\\:\\$filter \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_string\\(\\) with bool will always evaluate to false\\.$#', + 'identifier' => 'function.impossibleType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^If condition is always false\\.$#', + 'identifier' => 'if.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Right side of && is always true\\.$#', + 'identifier' => 'booleanAnd.rightAlwaysTrue', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_imagecreatetruecolor\\(\\) never returns GdImage so it can be removed from the return type\\.$#', + 'identifier' => 'return.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset 2 on array\\{string, non\\-empty\\-string, non\\-empty\\-string\\} in isset\\(\\) always exists and is not nullable\\.$#', + 'identifier' => 'isset.offset', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\!\\=\\= between \'\' and non\\-empty\\-string will always evaluate to true\\.$#', + 'identifier' => 'notIdentical.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_array\\(\\) with non\\-empty\\-array\\ will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Negated boolean expression is always false\\.$#', + 'identifier' => 'booleanNot.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Term\\:\\:\\$term_id \\(int\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\!\\=\\= between 0 and int\\\\|int\\<1, max\\> will always evaluate to true\\.$#', + 'identifier' => 'notIdentical.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\!\\=\\= between float\\|int\\|numeric\\-string and \'bottom\'\\|\'footer\'\\|\'header\'\\|\'main\'\\|\'menu\\-1\'\\|\'menu\\-2\'\\|\'navigation\'\\|\'primary\'\\|\'secondary\'\\|\'social\'\\|\'subsidiary\'\\|\'top\' will always evaluate to true\\.$#', + 'identifier' => 'notIdentical.alwaysTrue', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Negated boolean expression is always true\\.$#', + 'identifier' => 'booleanNot.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\!\\=\\= between false and int will always evaluate to true\\.$#', + 'identifier' => 'notIdentical.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\=\\=\\= between 3000000000 and 2147483647 will always evaluate to false\\.$#', + 'identifier' => 'identical.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Call to function is_array\\(\\) with non\\-empty\\-list\\{0\\?\\: string, 1\\?\\: non\\-falsy\\-string&numeric\\-string, 2\\?\\: numeric\\-string, 3\\?\\: numeric\\-string\\} will always evaluate to true\\.$#', + 'identifier' => 'function.alreadyNarrowedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post\\:\\:\\$filter \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset mixed on array\\{\\} in isset\\(\\) does not exist\\.$#', + 'identifier' => 'isset.offset', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Offset mixed on array\\{\\} on left side of \\?\\? does not exist\\.$#', + 'identifier' => 'nullCoalesce.offset', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Result of && is always false\\.$#', + 'identifier' => 'booleanAnd.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Result of && is always false\\.$#', + 'identifier' => 'booleanAnd.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^If condition is always false\\.$#', + 'identifier' => 'if.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post\\:\\:\\$post_name \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post\\:\\:\\$post_title \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post_Type\\:\\:\\$template \\(array\\\\) on left side of \\?\\? is not nullable\\.$#', + 'identifier' => 'nullCoalesce.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Template_Autosaves_Controller\\:\\:\\$parent_post_type is never read, only written\\.$#', + 'identifier' => 'property.onlyWritten', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Strict comparison using \\=\\=\\= between false and mixed will always evaluate to false\\.$#', + 'identifier' => 'identical.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _set_preview\\(\\) never returns false so it can be removed from the return type\\.$#', + 'identifier' => 'return.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Query\\:\\:\\$max_num_pages \\(int\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_term_to_edit\\(\\) never returns int so it can be removed from the return type\\.$#', + 'identifier' => 'return.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^If condition is always false\\.$#', + 'identifier' => 'if.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^While loop condition is always true\\.$#', + 'identifier' => 'while.alwaysTrue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-compat/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_theme_support\\(\\) never returns void so it can be removed from the return type\\.$#', + 'identifier' => 'return.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site\\:\\:\\$domain \\(string\\) in isset\\(\\) is not nullable\\.$#', + 'identifier' => 'isset.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User\\:\\:\\$ID \\(int\\) on left side of \\?\\? is not nullable\\.$#', + 'identifier' => 'nullCoalesce.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Right side of && is always true\\.$#', + 'identifier' => 'booleanAnd.rightAlwaysTrue', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^If condition is always false\\.$#', + 'identifier' => 'if.alwaysFalse', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-login.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function validate_another_blog_signup\\(\\) never returns null so it can be removed from the return type\\.$#', + 'identifier' => 'return.unusedType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; + +return ['parameters' => ['ignoreErrors' => $ignoreErrors]]; diff --git a/tests/phpstan/baseline/level-5.php b/tests/phpstan/baseline/level-5.php new file mode 100644 index 0000000000000..5de46ce14d901 --- /dev/null +++ b/tests/phpstan/baseline/level-5.php @@ -0,0 +1,2111 @@ + '#^Parameter \\#1 \\$key of function remove_query_arg expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-activate.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$subject of function str_replace expects array\\\\|string, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/admin-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_edit_post_link expects int\\|WP_Post, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_post_status expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_the_title expects int\\|WP_Post, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, bool given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/customize.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$position of function wp_comment_reply expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/edit-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 5, + 'path' => __DIR__ . '/../../../src/wp-admin/edit-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$screen of function do_meta_boxes expects string\\|WP_Screen, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/edit-form-advanced.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$screen of function do_meta_boxes expects string\\|WP_Screen, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/edit-form-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$screen of function do_meta_boxes expects string\\|WP_Screen, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/edit-link-form.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$name of function submit_button expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/edit-tag-form.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_edit_post_link expects int\\|WP_Post, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_post_type expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$attachment of function wp_get_attachment_id3_keys expects WP_Post, stdClass given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_id of function _wp_ajax_delete_comment_response expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$message of function wp_die expects string\\|WP_Error, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 111, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$message of function wp_die expects string\\|WP_Error, int\\<1, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 6, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$arr2 of function array_diff expects an array of values castable to string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$compare_from of function wp_get_revision_ui_diff expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$compare_to of function wp_get_revision_ui_diff expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$gmt of function current_time expects bool, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/bookmark.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$allowed_html of function wp_kses expects array\\\\|string, array\\\\|true\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-automatic-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_js expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function submit_button expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, \\(float\\|int\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function submit_button expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$language_updates of method Language_Pack_Upgrader\\:\\:bulk_upgrade\\(\\) expects array\\, list\\\\|string\\|false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$str of function md5 expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_id of function get_comment_meta expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_post expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function post_password_required expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$post of function get_comment_class expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$min of function mktime expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpext.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#4 \\$mon of function mktime expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpext.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#5 \\$day of function mktime expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpext.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$number of function _nx expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$array of function implode expects array\\, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int\\<0, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int\\<0, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$keys of function array_fill_keys expects an array of values castable to string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-requests-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-requests-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int\\<1, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$version of function get_core_checksums expects string, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$bytes of function size_format expects int\\|string, float\\|false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$allowed_html of function wp_kses expects array\\\\|string, array\\\\|true\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$allowed_html of function wp_kses expects array\\\\|string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$args of function WP_Filesystem expects array\\|false, true given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function _draft_or_post_title expects int\\|WP_Post, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_the_permalink expects int\\|WP_Post, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function post_password_required expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$name of function submit_button expects string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$callback of function add_filter expects callable\\(\\)\\: mixed, \'wxr_filter_postmeta\' given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$str of function md5 expects string, int\\<0, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$image of function is_gd_image expects GdImage\\|resource\\|false, WP_Image_Editor given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$width of function wp_imagecreatetruecolor expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$height of function wp_imagecreatetruecolor expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#5 \\$src_x of function imagecopy expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#6 \\$src_y of function imagecopy expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#7 \\$src_w of function imagecopy expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#8 \\$src_h of function imagecopy expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$array \\(non\\-empty\\-list\\\\) of array_values is already a list, call has no effect\\.$#', + 'identifier' => 'arrayValues.list', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post_id of function wp_delete_attachment expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/import.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$number of function number_format_i18n expects float, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post_id of function get_media_items expects int, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$result of function wp_parse_str expects array, \\(string\\|false\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 8, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int\\<0, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int\\<1, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$value of function update_blog_status expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$arr2 of function array_intersect expects an array of values castable to string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$tags of function wp_generate_tag_cloud expects array\\, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$name of function submit_button expects string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$number of function _nx expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$allowed_html of function wp_kses expects array\\\\|string, array\\\\|true\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$fallback_title of function sanitize_title expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$user_id of function get_the_author_meta expects int\\|false, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$str of function md5 expects string, int\\<1, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$multiplier of function str_repeat expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$title of function add_meta_box expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$callback of function add_meta_box expects callable\\(\\)\\: mixed, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$update of method Language_Pack_Upgrader\\:\\:upgrade\\(\\) expects string\\|false, stdClass given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/translation-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$timestamp of function wp_schedule_event expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$deprecated of function add_option expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$user of function wp_get_user_contact_methods expects WP_User\\|null, stdClass given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#4 \\$is_public of function wp_install expects bool, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 5, + 'path' => __DIR__ . '/../../../src/wp-admin/nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$menu_data of function wp_save_nav_menu_items expects array\\, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$message of function wp_die expects string\\|WP_Error, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$network_id of function can_edit_network expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/network/site-info.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/network/site-info.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$network_id of function can_edit_network expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/network/site-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/network/site-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$network_id of function can_edit_network expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/network/site-themes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/network/site-themes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$network_id of function can_edit_network expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/network/site-users.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-admin/network/site-users.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/network/sites.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int\\<2, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/options-discussion.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, bool given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/options-general.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int\\<0, 6\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/options-general.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$arr2 of function array_diff expects an array of values castable to string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/plugins.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$callback of function array_filter expects \\(callable\\(mixed\\)\\: bool\\)\\|null, \'validate_file\' given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/plugins.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$newvalue of function ini_set expects string, true given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/plugins.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$newvalue of function ini_set expects string, true given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/user-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-admin/users.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/content-image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/content-single.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment of function get_comment_link expects int\\|WP_Comment\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function next_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function previous_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$screen of function add_contextual_help expects string, WP_Screen\\|null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$args of function register_setting expects array, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$deps of function wp_enqueue_style expects array\\, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int\\<1, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/showcase.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$instance of function the_widget expects array, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/showcase.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/author-bio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function next_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function previous_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$number of function _n expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function next_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function previous_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$deps of function wp_enqueue_style expects array\\, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$num of function dechex expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 6, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/helper-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_post expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/helper-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$user_id of function get_userdata expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/helper-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/template-parts/post/author-bio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/color-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, \\(float\\|int\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, \\(float\\|int\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function next_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function previous_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/template-parts/biography.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment of function get_comment_link expects int\\|WP_Comment\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$wp_head_callback of function add_custom_image_header expects callable\\(\\)\\: mixed, \'\' given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/loop-attachment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function next_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/loop-attachment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function previous_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/loop-attachment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/loop-single.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/author-bio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function next_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function previous_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/author.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function next_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$size of function previous_image_link expects array\\\\|string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#4 \\$prefix of function twentytwenty_generate_css expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-non-latin-languages.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#5 \\$suffix of function twentytwenty_generate_css expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-non-latin-languages.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$deps of function wp_enqueue_style expects array\\, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/template-parts/entry-author-bio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int\\|false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$author_id of function get_author_posts_url expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/template-parts/post/author-bio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$size of function get_avatar expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/template-parts/post/author-bio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$userid of function count_user_posts expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/author-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$separator of function explode expects string, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$block of function filter_block_kses expects WP_Block_Parser_Block, array given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#4 \\$block_context of function filter_block_kses_value expects array\\|null, WP_Block_Parser_Block given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$arr2 of function array_intersect expects an array of values castable to string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/canonical.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$callback of function preg_replace_callback expects callable\\(array\\\\)\\: string, \'lowercase_octets\' given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/canonical.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_post expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/capabilities.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$user_id of function get_userdata expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/capabilities.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$blog_id of function get_home_url expects int\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$name of class WP_Block_Parser_Block constructor expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$child_id of method WP_Comment\\:\\:get_child\\(\\) expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$ids of function _prime_post_caches expects array\\, list\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_post expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$ajax_message of method WP_Customize_Manager\\:\\:wp_die\\(\\) expects string\\|WP_Error, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 6, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$arr1 of function array_diff expects an array of values castable to string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$message of function wp_die expects string\\|WP_Error, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$month of function wp_checkdate expects int, \\(string\\|false\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$day of function wp_checkdate expects int, \\(string\\|false\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$year of function wp_checkdate expects int, \\(string\\|false\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$message of function wp_die expects string\\|WP_Error, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$message of function wp_die expects string\\|WP_Error, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_html expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$parent_query of method WP_Date_Query\\:\\:get_sql_for_clause\\(\\) expects array, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$timestamp of function gmdate expects int, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_Date_Query\\:\\:build_value\\(\\) expects array\\|string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_Date_Query\\:\\:build_value\\(\\) expects array\\|string, int\\|null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$value of static method WP_Duotone\\:\\:colord_parse_hue\\(\\) expects float, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$priority of function _wp_filter_build_unique_id expects int, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$value of function curl_setopt expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-curl.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$mode of function stream_set_blocking expects bool, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-streams.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$callback of method WP_Image_Editor_GD\\:\\:make_image\\(\\) expects callable\\(\\)\\: mixed, \'imageavif\' given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$limit of static method Imagick\\:\\:setResourceLimit\\(\\) expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method Imagick\\:\\:setOption\\(\\) expects string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method Imagick\\:\\:setOption\\(\\) expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method Imagick\\:\\:setOption\\(\\) expects string, true given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$user_id of function get_userdata expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$arr2 of function array_intersect expects an array of values castable to string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$array of function implode expects array\\, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$new_blog_id of function switch_to_blog expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$array of function implode expects array\\, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$metadata of method WP_Theme_JSON\\:\\:get_feature_declarations_for_node\\(\\) expects object, array given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$node of static method WP_Theme_JSON\\:\\:process_pseudo_selectors\\(\\) expects array, object given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$styles of static method WP_Theme_JSON\\:\\:compute_style_properties\\(\\) expects array, object given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$data of method WP_Theme\\:\\:cache_add\\(\\) expects array\\|string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$str of function strtoupper expects string, bool given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-token-map.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$array of function implode expects array\\, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 6, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$level of method WP_User\\:\\:translate_level_to_cap\\(\\) expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$number of method WP_Widget\\:\\:_set\\(\\) expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_the_title expects int\\|WP_Post, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$term_id of method wp_xmlrpc_server\\:\\:get_term_custom_fields\\(\\) expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$user_id of function get_userdata expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$arr2 of function array_intersect expects an array of values castable to string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_id of function get_page_of_comment expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_permalink expects int\\|WP_Post, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function post_password_required expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$user_id of function get_userdata expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment of function get_comment_link expects int\\|WP_Comment\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_id of function add_comment_meta expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 5, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_id of function delete_comment_meta expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 8, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_id of function get_comment_meta expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_id of function get_comment_text expects int\\|WP_Comment, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_id of function get_page_of_comment expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$content of function pingback expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$ids of function clean_comment_cache expects array\\|int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post_id of function wp_update_comment_count expects int\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$object_ids of function update_meta_cache expects array\\\\|string, list\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$gmt_time of function spawn_cron expects int, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$container_context of method WP_Customize_Partial\\:\\:render\\(\\) expects array, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-selective-refresh.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$response of method WP_REST_Server\\:\\:response_to_data\\(\\) expects WP_REST_Response, WP_HTTP_Response given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$user_id of function get_userdata expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post_id of function get_post_comments_feed_link expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/feed-atom-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post_id of function get_post_comments_feed_link expects int, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed-rss2.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_the_guid expects int\\|WP_Post, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$message of class WP_Error constructor expects string, list\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$number of function zeroise expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$callback of function preg_replace_callback expects callable\\(array\\\\)\\: string, \'_links_add_base\' given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$callback of function preg_replace_callback expects callable\\(array\\\\)\\: string, \'_links_add_target\' given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$prefix of function uniqid expects string, int\\<0, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$fallback_url of function wp_validate_redirect expects string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$number of function _n expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#4 \\$mon of function mktime expects int, \\(string\\|false\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#5 \\$day of function mktime expects int, \\(string\\|false\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#6 \\$year of function mktime expects int, \\(string\\|false\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, float given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$replace of function str_replace expects array\\\\|string, int\\<1, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$replace of function str_replace expects array\\\\|string, int\\\\|int\\<2, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$url of function wp_admin_css_color expects string, false given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$name of method WP_HTML_Tag_Processor\\:\\:set_bookmark\\(\\) expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$blog_id of function get_admin_url expects int\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$user_id of function get_userdata expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$replace of function str_replace expects array\\\\|string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$str of function md5 expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$newvalue of function ini_set expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$subject of function str_replace expects array\\\\|string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int\\<1, 9\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_html expects string, int\\<1, 9\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$array of function array_unique expects an array of values castable to string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#5 \\$text of function wp_get_attachment_link expects string\\|false, bool given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$value of function update_blog_status expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$network_id of static method WP_Network\\:\\:get_instance\\(\\) expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$month of function wp_checkdate expects int, \\(string\\|false\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$day of function wp_checkdate expects int, \\(string\\|false\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$object_id of function delete_metadata expects int, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$year of function wp_checkdate expects int, \\(string\\|false\\) given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post_id of function wp_delete_post expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of function setcookie expects string, int\\<1, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$engine of class Text_Diff constructor expects string, list\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$message of function wp_die expects string\\|WP_Error, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_edit_post_link expects int\\|WP_Post, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_permalink expects int\\|WP_Post, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 4, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_post expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$user of function user_can expects int\\|WP_User, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$user_id of function get_userdata expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$url of function user_trailingslashit expects string, int\\\\|int\\<2, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$replace of function str_replace expects array\\\\|string, int\\<1, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$user_id of function get_the_author_meta expects int\\|false, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$keys of function array_fill_keys expects an array of values castable to string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$month of function wp_checkdate expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$string of function strlen expects string, int\\<2, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$arr2 of function array_diff expects an array of values castable to string, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$array of function implode expects array\\, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$day of function wp_checkdate expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$object_id of function delete_metadata expects int, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$year of function wp_checkdate expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$data_object of method WP_REST_Controller\\:\\:update_additional_fields_for_object\\(\\) expects object, array given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_id of function get_comment_type expects int\\|WP_Comment, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_id of function wp_delete_comment expects int\\|WP_Comment, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$comment_id of function wp_trash_comment expects int\\|WP_Comment, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$object_id of method WP_REST_Meta_Fields\\:\\:get_value\\(\\) expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_post expects int\\|WP_Post\\|null, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 3, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$comment_id of method WP_REST_Comments_Controller\\:\\:handle_status_param\\(\\) expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$object_id of method WP_REST_Meta_Fields\\:\\:update_value\\(\\) expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_HTTP_Response\\:\\:header\\(\\) expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_HTTP_Response\\:\\:header\\(\\) expects string, int\\<0, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_HTTP_Response\\:\\:header\\(\\) expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_HTTP_Response\\:\\:header\\(\\) expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_HTTP_Response\\:\\:header\\(\\) expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_HTTP_Response\\:\\:header\\(\\) expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$args of function get_taxonomies expects array, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$id of function get_block_template expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$id of method WP_REST_Templates_Controller\\:\\:prepare_links\\(\\) expects int, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_HTTP_Response\\:\\:header\\(\\) expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_HTTP_Response\\:\\:header\\(\\) expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_HTTP_Response\\:\\:header\\(\\) expects string, int\\<0, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$value of method WP_HTTP_Response\\:\\:header\\(\\) expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$arr1 of function array_diff expects an array of values castable to string, list\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$array_arg of function usort contains unresolvable type\\.$#', + 'identifier' => 'argument.unresolvableType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$callback of function usort contains unresolvable type\\.$#', + 'identifier' => 'argument.unresolvableType', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$src of method WP_Dependencies\\:\\:add\\(\\) expects string\\|false, true given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$terms of function wp_update_term_count expects array\\|int, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$array of function implode expects array\\, array\\ given\\.$#', + 'identifier' => 'argument.type', + 'count' => 2, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$fallback_title of function sanitize_title expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$fallback_title of function sanitize_title expects string, int\\|WP_Error given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$taxonomy of function wp_update_term_count expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#2 \\$newvalue of function ini_set expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$replacement of function _deprecated_file expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-compat/comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$replacement of function _deprecated_file expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-compat/footer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$replacement of function _deprecated_file expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-compat/header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$replacement of function _deprecated_file expects string, null given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-compat/sidebar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$string of function strlen expects string, int\\<2, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-templates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$string of function mb_strlen expects string, int\\<2, max\\> given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$control_callback of function wp_register_widget_control expects callable\\(\\)\\: mixed, \'\' given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#3 \\$output_callback of function wp_register_sidebar_widget expects callable\\(\\)\\: mixed, \'\' given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_attr expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-nav-menu-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$post of function get_the_title expects int\\|WP_Post, string given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Parameter \\#1 \\$text of function esc_html expects string, int given\\.$#', + 'identifier' => 'argument.type', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-mail.php', +]; + +return ['parameters' => ['ignoreErrors' => $ignoreErrors]]; diff --git a/tests/phpstan/baseline/level-6.php b/tests/phpstan/baseline/level-6.php new file mode 100644 index 0000000000000..2d74a137f723c --- /dev/null +++ b/tests/phpstan/baseline/level-6.php @@ -0,0 +1,33431 @@ + '#^Function do_activate_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-activate.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_activate_stylesheet\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-activate.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function export_add_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function export_date_options\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_ajax_add_hierarchical_term\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_ajax_delete_comment_response\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_activate_plugin\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_add_link_category\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_add_menu_item\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_add_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_add_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_add_user\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_ajax_tag_search\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_autocomplete_user\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_closed_postboxes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_crop_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_dashboard_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_date_format\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_delete_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_delete_inactive_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_delete_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_delete_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_delete_page\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_delete_plugin\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_delete_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_delete_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_delete_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_destroy_sessions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_dim_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_dismiss_wp_pointer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_edit_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_edit_theme_plugin_file\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_fetch_list\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_find_posts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_generate_password\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_get_attachment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_get_comments\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_get_community_events\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_get_permalink\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_get_post_thumbnail_html\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_get_revision_diffs\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_get_tagcloud\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_health_check_background_updates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_health_check_dotorg_communication\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_health_check_get_sizes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_health_check_loopback_requests\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_health_check_site_status_result\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_heartbeat\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_hidden_columns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_image_editor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_imgedit_preview\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_inline_save\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_inline_save_tax\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_install_plugin\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_install_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_logged_in\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_media_create_image_subsizes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_menu_get_metabox\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_menu_locations_save\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_menu_quick_search\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_meta_box_order\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_nopriv_generate_password\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_nopriv_heartbeat\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_oembed_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_parse_embed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_parse_media_shortcode\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_query_attachments\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_query_themes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_replyto_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_rest_nonce\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_sample_permalink\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_save_attachment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_save_attachment_compat\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_save_attachment_order\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_save_user_color_scheme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_save_widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_save_wporg_username\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_search_install_plugins\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_search_plugins\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_send_attachment_to_editor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_send_link_to_editor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_send_password_reset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_set_attachment_thumbnail\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_set_post_thumbnail\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_time_format\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_toggle_auto_updates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_trash_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_untrash_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_update_plugin\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_update_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_update_welcome_panel\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_update_widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_upload_attachment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_widgets_order\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_wp_compression_test\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_wp_fullscreen_save_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_wp_link_ajax\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_wp_privacy_erase_personal_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_wp_privacy_export_personal_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ajax_wp_remove_post_lock\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ajax-actions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_insert_link\\(\\) has parameter \\$linkdata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/bookmark.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_link_manager_disabled_message\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/bookmark.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_link_cats\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/bookmark.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_link\\(\\) has parameter \\$linkdata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/bookmark.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Automatic_Upgrader_Skin\\:\\:feedback\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-automatic-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Automatic_Upgrader_Skin\\:\\:feedback\\(\\) has parameter \\$feedback with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-automatic-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Automatic_Upgrader_Skin\\:\\:footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-automatic-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Automatic_Upgrader_Skin\\:\\:header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-automatic-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Automatic_Upgrader_Skin\\:\\:\\$messages has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-automatic-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Plugin_Upgrader_Skin\\:\\:add_strings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-plugin-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Plugin_Upgrader_Skin\\:\\:after\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-plugin-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Plugin_Upgrader_Skin\\:\\:before\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-plugin-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Plugin_Upgrader_Skin\\:\\:bulk_footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-plugin-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Bulk_Plugin_Upgrader_Skin\\:\\:\\$plugin_info type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-plugin-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Theme_Upgrader_Skin\\:\\:add_strings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-theme-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Theme_Upgrader_Skin\\:\\:after\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-theme-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Theme_Upgrader_Skin\\:\\:before\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-theme-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Theme_Upgrader_Skin\\:\\:bulk_footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-theme-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:add_strings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:after\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:before\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:bulk_footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:bulk_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:error\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:feedback\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:flush_output\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Bulk_Upgrader_Skin\\:\\:reset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-bulk-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Core_Upgrader\\:\\:upgrade\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-core-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Core_Upgrader\\:\\:upgrade_strings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-core-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Background\\:\\:admin_load\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Background\\:\\:admin_page\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Background\\:\\:ajax_background_add\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Background\\:\\:attachment_fields_to_edit\\(\\) has parameter \\$form_fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Background\\:\\:attachment_fields_to_edit\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Background\\:\\:filter_upload_tabs\\(\\) has parameter \\$tabs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Background\\:\\:filter_upload_tabs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Background\\:\\:handle_upload\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Background\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Background\\:\\:take_action\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Background\\:\\:wp_set_background_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:admin_page\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:ajax_header_add\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:ajax_header_crop\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:ajax_header_remove\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:attachment_fields_to_edit\\(\\) has parameter \\$form_fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:attachment_fields_to_edit\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:create_attachment_object\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:css_includes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:customize_set_last_used\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:filter_upload_tabs\\(\\) has parameter \\$tabs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:filter_upload_tabs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:finished\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:get_default_header_images\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:get_header_dimensions\\(\\) has parameter \\$dimensions with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:get_header_dimensions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:get_previous_crop\\(\\) has parameter \\$attachment with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:get_uploaded_header_images\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:help\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:insert_attachment\\(\\) has parameter \\$attachment with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:js_1\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:js_2\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:js_includes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:process_default_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:remove_header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:reset_header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:set_header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:show_header_selector\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:step_1\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:step_2\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:step_2_manage_upload\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:step_3\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Custom_Image_Header\\:\\:take_action\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Custom_Image_Header\\:\\:\\$default_headers type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-custom-image-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Language_Pack_Upgrader_Skin\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Language_Pack_Upgrader_Skin\\:\\:after\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Language_Pack_Upgrader_Skin\\:\\:before\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Language_Pack_Upgrader_Skin\\:\\:bulk_footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Language_Pack_Upgrader_Skin\\:\\:error\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Language_Pack_Upgrader_Skin\\:\\:\\$display_footer_actions has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Language_Pack_Upgrader_Skin\\:\\:\\$language_update has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Language_Pack_Upgrader\\:\\:async_upgrade\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Language_Pack_Upgrader\\:\\:bulk_upgrade\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Language_Pack_Upgrader\\:\\:bulk_upgrade\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Language_Pack_Upgrader\\:\\:upgrade\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Language_Pack_Upgrader\\:\\:upgrade\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Language_Pack_Upgrader\\:\\:upgrade_strings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Language_Pack_Upgrader\\:\\:\\$result type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-language-pack-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Installer_Skin\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Installer_Skin\\:\\:after\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Installer_Skin\\:\\:before\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Plugin_Installer_Skin\\:\\:\\$api has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Plugin_Installer_Skin\\:\\:\\$is_downgrading has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Plugin_Installer_Skin\\:\\:\\$overwrite has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Plugin_Installer_Skin\\:\\:\\$type has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Plugin_Installer_Skin\\:\\:\\$url has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader_Skin\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader_Skin\\:\\:after\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader\\:\\:active_after\\(\\) has parameter \\$plugin with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader\\:\\:active_before\\(\\) has parameter \\$plugin with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader\\:\\:bulk_upgrade\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader\\:\\:bulk_upgrade\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader\\:\\:deactivate_plugin_before_upgrade\\(\\) has parameter \\$plugin with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader\\:\\:delete_old_plugin\\(\\) has parameter \\$plugin with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader\\:\\:install\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader\\:\\:install_strings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader\\:\\:upgrade\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Plugin_Upgrader\\:\\:upgrade_strings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Plugin_Upgrader\\:\\:\\$new_plugin_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Plugin_Upgrader\\:\\:\\$result type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-plugin-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Installer_Skin\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Installer_Skin\\:\\:after\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Installer_Skin\\:\\:before\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Theme_Installer_Skin\\:\\:\\$api has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Theme_Installer_Skin\\:\\:\\$is_downgrading has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Theme_Installer_Skin\\:\\:\\$overwrite has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Theme_Installer_Skin\\:\\:\\$type has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Theme_Installer_Skin\\:\\:\\$url has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-installer-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader_Skin\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader_Skin\\:\\:after\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:bulk_upgrade\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:bulk_upgrade\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:check_parent_theme_filter\\(\\) has parameter \\$child_result with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:check_parent_theme_filter\\(\\) has parameter \\$hook_extra with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:current_after\\(\\) has parameter \\$theme with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:current_before\\(\\) has parameter \\$theme with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:delete_old_theme\\(\\) has parameter \\$theme with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:hide_activate_preview_actions\\(\\) has parameter \\$actions with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:hide_activate_preview_actions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:install\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:install_strings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:upgrade\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Theme_Upgrader\\:\\:upgrade_strings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Theme_Upgrader\\:\\:\\$new_theme_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Theme_Upgrader\\:\\:\\$result type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-theme-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category_Checklist\\:\\:end_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-category-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category_Checklist\\:\\:end_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-category-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category_Checklist\\:\\:end_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-category-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category_Checklist\\:\\:end_lvl\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-category-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category_Checklist\\:\\:start_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-category-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category_Checklist\\:\\:start_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-category-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category_Checklist\\:\\:start_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-category-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category_Checklist\\:\\:start_lvl\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-category-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu_Checklist\\:\\:__construct\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu_Checklist\\:\\:end_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu_Checklist\\:\\:start_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu_Checklist\\:\\:start_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-checklist.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu_Edit\\:\\:end_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu_Edit\\:\\:start_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu_Edit\\:\\:start_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-walker-nav-menu-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Ajax_Upgrader_Skin\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ajax-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Ajax_Upgrader_Skin\\:\\:error\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ajax-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Ajax_Upgrader_Skin\\:\\:feedback\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ajax-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Ajax_Upgrader_Skin\\:\\:feedback\\(\\) has parameter \\$feedback with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ajax-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Ajax_Upgrader_Skin\\:\\:\\$plugin_info type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ajax-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_created\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_created\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_default\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_default\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_last_ip\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_last_ip\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_last_used\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_last_used\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_name\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_name\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_revoke\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:column_revoke\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:display_tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:print_js_template_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:single_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords_List_Table\\:\\:single_row\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-application-passwords-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Automatic_Updater\\:\\:after_core_update\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Automatic_Updater\\:\\:after_plugin_theme_update\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Automatic_Updater\\:\\:after_plugin_theme_update\\(\\) has parameter \\$update_results with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Automatic_Updater\\:\\:run\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Automatic_Updater\\:\\:send_debug_email\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Automatic_Updater\\:\\:send_email\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Automatic_Updater\\:\\:send_plugin_theme_email\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Automatic_Updater\\:\\:send_plugin_theme_email\\(\\) has parameter \\$failed_updates with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Automatic_Updater\\:\\:send_plugin_theme_email\\(\\) has parameter \\$successful_updates with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Automatic_Updater\\:\\:\\$update_results type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-automatic-updater.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:column_author\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:column_cb\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:column_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:column_date\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:column_default\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:column_response\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:comment_type_dropdown\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:display\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:extra_tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:get_sortable_columns\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comments_List_Table\\:\\:single_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comments_List_Table\\:\\:\\$checkbox has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comments_List_Table\\:\\:\\$extra_items has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comments_List_Table\\:\\:\\$pending_count has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comments_List_Table\\:\\:\\$user_can has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:__construct\\(\\) has parameter \\$user_location with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:cache_events\\(\\) has parameter \\$events with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:coordinates_match\\(\\) has parameter \\$a with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:coordinates_match\\(\\) has parameter \\$b with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:format_event_data_time\\(\\) has parameter \\$response_body with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:format_event_data_time\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:get_cached_events\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:get_events\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:get_events_transient_key\\(\\) has parameter \\$location with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:get_request_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:maybe_log_events_response\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:maybe_log_events_response\\(\\) has parameter \\$details with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:trim_events\\(\\) has parameter \\$events with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Community_Events\\:\\:trim_events\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Community_Events\\:\\:\\$user_location type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-community-events.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:check_for_updates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:debug_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:format\\(\\) has parameter \\$info_array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_sizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_active_theme\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_constants\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_core\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_database\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_dropins\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_filesystem\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_media\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_mu_plugins\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_parent_theme\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_paths_sizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_plugins_active\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_plugins_inactive\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_server\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Debug_Data\\:\\:get_wp_themes_inactive\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-debug-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_Base\\:\\:dirlist\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-base.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_Base\\:\\:get_contents_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-base.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Filesystem_Base\\:\\:\\$cache type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-base.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Filesystem_Base\\:\\:\\$options has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-base.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_Direct\\:\\:dirlist\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-direct.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_Direct\\:\\:get_contents_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-direct.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_FTPext\\:\\:__construct\\(\\) has parameter \\$opt with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpext.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_FTPext\\:\\:dirlist\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpext.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_FTPext\\:\\:get_contents_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpext.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_FTPext\\:\\:parselisting\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpext.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_ftpsockets\\:\\:__construct\\(\\) has parameter \\$opt with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpsockets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_ftpsockets\\:\\:dirlist\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpsockets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_ftpsockets\\:\\:get_contents_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ftpsockets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_SSH2\\:\\:__construct\\(\\) has parameter \\$opt with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ssh2.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_SSH2\\:\\:dirlist\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ssh2.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Filesystem_SSH2\\:\\:get_contents_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-filesystem-ssh2.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Importer\\:\\:get_imported_comments\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-importer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Importer\\:\\:get_imported_posts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-importer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Importer\\:\\:get_page\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-importer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Importer\\:\\:stop_the_insanity\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-importer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:dismiss_pointers_for_new_users\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:enqueue_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:pointer_wp330_media_uploader\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:pointer_wp330_saving_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:pointer_wp330_toolbar\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:pointer_wp340_choose_image_from_library\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:pointer_wp340_customize_current_theme_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:pointer_wp350_media\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:pointer_wp360_locks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:pointer_wp360_revisions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:pointer_wp390_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:pointer_wp410_dfw\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:pointer_wp496_privacy\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:print_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Internal_Pointers\\:\\:print_js\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-internal-pointers.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:column_categories\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:column_cb\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:column_default\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:column_name\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:column_rating\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:column_rel\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:column_url\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:column_visible\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:extra_tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:get_bulk_actions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:get_sortable_columns\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Links_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-links-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_List_Table_Compat\\:\\:get_column_info\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_List_Table_Compat\\:\\:get_columns\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_List_Table_Compat\\:\\:\\$_columns has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_List_Table_Compat\\:\\:\\$_screen has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:__call\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:_js_vars\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:ajax_response\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:ajax_user_can\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:bulk_actions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:column_cb\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:column_cb\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:column_default\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:column_default\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:comments_bubble\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:display\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:display_rows_or_placeholder\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:display_tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:extra_tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:get_column_info\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:get_views_links\\(\\) has parameter \\$link_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:handle_row_actions\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:months_dropdown\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:pagination\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:print_column_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:print_table_description\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:search_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:set_pagination_args\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:set_pagination_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:single_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:single_row\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:single_row_columns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:single_row_columns\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:view_switcher\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Table\\:\\:views\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_List_Table\\:\\:\\$_actions type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_List_Table\\:\\:\\$_args type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_List_Table\\:\\:\\$_column_headers type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_List_Table\\:\\:\\$_pagination_args type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_List_Table\\:\\:\\$compat_fields type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_List_Table\\:\\:\\$compat_methods type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_List_Table\\:\\:\\$items type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_List_Table\\:\\:\\$modes type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:column_author\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:column_cb\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:column_comments\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:column_date\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:column_default\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:column_desc\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:column_parent\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:column_title\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:extra_tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Media_List_Table\\:\\:views\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Media_List_Table\\:\\:\\$comment_pending_count type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-media-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_blogname\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_blogname\\(\\) has parameter \\$blog with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_cb\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_cb\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_default\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_default\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_id\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_id\\(\\) has parameter \\$blog with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_lastupdated\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_lastupdated\\(\\) has parameter \\$blog with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_plugins\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_plugins\\(\\) has parameter \\$blog with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_registered\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_registered\\(\\) has parameter \\$blog with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_users\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:column_users\\(\\) has parameter \\$blog with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:extra_tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:get_views\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:handle_row_actions\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:pagination\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Sites_List_Table\\:\\:site_states\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_MS_Sites_List_Table\\:\\:\\$status_list type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-sites-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Themes_List_Table\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Themes_List_Table\\:\\:column_autoupdates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Themes_List_Table\\:\\:column_cb\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Themes_List_Table\\:\\:column_default\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Themes_List_Table\\:\\:column_description\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Themes_List_Table\\:\\:column_name\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Themes_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Themes_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Themes_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Themes_List_Table\\:\\:single_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Themes_List_Table\\:\\:single_row_columns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_MS_Themes_List_Table\\:\\:\\$has_items has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_MS_Themes_List_Table\\:\\:\\$is_site_themes has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_MS_Themes_List_Table\\:\\:\\$site_id has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:_column_blogs\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:column_blogs\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:column_cb\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:column_default\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:column_email\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:column_id\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:column_name\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:column_registered\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:column_username\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:get_bulk_actions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:get_sortable_columns\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:get_views\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:pagination\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MS_Users_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-ms-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Install_List_Table\\:\\:display\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Install_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Install_List_Table\\:\\:display_tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Install_List_Table\\:\\:get_dependencies_notice\\(\\) has parameter \\$plugin_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Install_List_Table\\:\\:get_installed_plugin_slugs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Install_List_Table\\:\\:get_installed_plugins\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Install_List_Table\\:\\:get_table_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Install_List_Table\\:\\:get_views\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Install_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Install_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Install_List_Table\\:\\:views\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Plugin_Install_List_Table\\:\\:\\$error has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Plugin_Install_List_Table\\:\\:\\$groups has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Plugin_Install_List_Table\\:\\:\\$order has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Plugin_Install_List_Table\\:\\:\\$orderby has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugin-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:_order_callback\\(\\) has parameter \\$plugin_a with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:_order_callback\\(\\) has parameter \\$plugin_b with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:_search_callback\\(\\) has parameter \\$plugin with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:add_dependencies_to_dependent_plugin_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:add_dependents_to_dependency_plugin_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:bulk_actions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:extra_tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:get_bulk_actions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:get_sortable_columns\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:get_table_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:get_views\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:search_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:single_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugins_List_Table\\:\\:single_row\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-plugins-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Comments_List_Table\\:\\:display\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-post-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Comments_List_Table\\:\\:get_column_info\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-post-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Comments_List_Table\\:\\:get_table_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-post-comments-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:_column_title\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:_display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:_display_rows\\(\\) has parameter \\$posts with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:_display_rows_hierarchical\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:_display_rows_hierarchical\\(\\) has parameter \\$pages with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:_page_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:_page_rows\\(\\) has parameter \\$children_pages with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:_page_rows\\(\\) has parameter \\$to_display with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:categories_dropdown\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:column_author\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:column_cb\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:column_comments\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:column_date\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:column_default\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:column_title\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:display_rows\\(\\) has parameter \\$posts with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:extra_tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:formats_dropdown\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:get_bulk_actions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:get_sortable_columns\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:get_table_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:get_views\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:inline_edit\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:set_hierarchical_display\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Posts_List_Table\\:\\:single_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Posts_List_Table\\:\\:\\$comment_pending_count type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Posts_List_Table\\:\\:\\$is_trash has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-posts-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Data_Export_Requests_List_Table\\:\\:column_next_steps\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Data_Removal_Requests_List_Table\\:\\:column_next_steps\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Policy_Content\\:\\:_policy_page_updated\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-policy-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Policy_Content\\:\\:add\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-policy-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Policy_Content\\:\\:add_suggested_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-policy-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Policy_Content\\:\\:get_suggested_policy_text\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-policy-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Policy_Content\\:\\:notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-policy-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Policy_Content\\:\\:policy_text_changed_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-policy-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Policy_Content\\:\\:privacy_policy_guide\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-policy-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Policy_Content\\:\\:text_change_check\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-policy-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Privacy_Policy_Content\\:\\:\\$policy_content has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-policy-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Requests_Table\\:\\:column_default\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-requests-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Requests_Table\\:\\:column_next_steps\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-requests-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Requests_Table\\:\\:embed_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-requests-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Requests_Table\\:\\:get_bulk_actions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-requests-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Requests_Table\\:\\:get_sortable_columns\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-requests-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Requests_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-requests-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Requests_Table\\:\\:process_bulk_action\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-requests-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Privacy_Requests_Table\\:\\:single_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-privacy-requests-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:add_help_tab\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:add_help_tab\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:add_old_compat_help\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:add_option\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:get_help_tab\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:get_help_tabs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:get_options\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:remove_help_tab\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:remove_help_tabs\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:remove_option\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:remove_options\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:remove_screen_reader_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:render_list_table_columns_preferences\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:render_meta_boxes_preferences\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:render_per_page_options\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:render_screen_layout\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:render_screen_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:render_screen_options\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:render_screen_options\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:render_screen_reader_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:render_view_mode\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:set_current_screen\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:set_help_sidebar\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:set_parentage\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:set_screen_reader_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Screen\\:\\:set_screen_reader_content\\(\\) has parameter \\$content with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Screen\\:\\:\\$_help_tabs type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Screen\\:\\:\\$_old_compat_help type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Screen\\:\\:\\$_options type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Screen\\:\\:\\$_registry type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:run_tests\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:test_accepts_dev_updates\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:test_accepts_minor_updates\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:test_all_files_writable\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:test_check_wp_filesystem_method\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:test_constants\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:test_constants\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:test_filters_automatic_updater_disabled\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:test_if_failed_update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:test_vcs_abspath\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:test_wp_automatic_updates_disabled\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health_Auto_Updates\\:\\:test_wp_version_check_attached\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health-auto-updates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:check_for_page_caching\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:check_wp_version_check_exists\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:enqueue_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_cron_tasks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_page_cache_detail\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_authorization_header\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_autoloaded_options\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_available_updates_disk_space\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_background_updates\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_dotorg_communication\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_file_uploads\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_http_requests\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_https_status\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_insecure_registration\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_is_in_debug_mode\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_loopback_requests\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_page_cache\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_persistent_object_cache\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_php_default_timezone\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_php_extensions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_php_sessions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_php_version\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_plugin_theme_auto_updates\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_plugin_version\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_rest_availability\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_scheduled_events\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_search_engine_visibility\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_sql_server\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_ssl_support\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_theme_version\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_update_temp_backup_writable\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_test_wordpress_version\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:get_tests\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:maybe_create_scheduled_event\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:prepare_sql_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:show_site_health_tab\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:wp_cron_scheduled_check\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Health\\:\\:wp_schedule_test_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$crons has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$instance has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$is_acceptable_mysql_version has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$is_mariadb has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$is_recommended_mysql_version has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$last_late_cron has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$last_missed_cron has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$mariadb_recommended_version has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$mysql_recommended_version has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$mysql_required_version has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$mysql_server_version has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$php_memory_limit has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Health\\:\\:\\$schedules has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-health.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Icon\\:\\:additional_sizes\\(\\) has parameter \\$sizes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-icon.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Icon\\:\\:additional_sizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-icon.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Icon\\:\\:create_attachment_object\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-icon.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Icon\\:\\:delete_attachment_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-icon.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Icon\\:\\:get_post_metadata\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-icon.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Icon\\:\\:get_post_metadata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-icon.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Icon\\:\\:insert_attachment\\(\\) has parameter \\$attachment with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-site-icon.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Terms_List_Table\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Terms_List_Table\\:\\:_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Terms_List_Table\\:\\:_rows\\(\\) has parameter \\$children with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Terms_List_Table\\:\\:_rows\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Terms_List_Table\\:\\:display_rows_or_placeholder\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Terms_List_Table\\:\\:get_bulk_actions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Terms_List_Table\\:\\:get_sortable_columns\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Terms_List_Table\\:\\:inline_edit\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Terms_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Terms_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Terms_List_Table\\:\\:single_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Terms_List_Table\\:\\:\\$callback_args has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Terms_List_Table\\:\\:\\$level has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-terms-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_Install_List_Table\\:\\:_js_vars\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_Install_List_Table\\:\\:_js_vars\\(\\) has parameter \\$extra_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_Install_List_Table\\:\\:display\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_Install_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_Install_List_Table\\:\\:install_theme_info\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_Install_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_Install_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_Install_List_Table\\:\\:single_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_Install_List_Table\\:\\:theme_installer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_Install_List_Table\\:\\:theme_installer_single\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Theme_Install_List_Table\\:\\:\\$features has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-theme-install-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Themes_List_Table\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Themes_List_Table\\:\\:_js_vars\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Themes_List_Table\\:\\:_js_vars\\(\\) has parameter \\$extra_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Themes_List_Table\\:\\:display\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Themes_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Themes_List_Table\\:\\:display_rows_or_placeholder\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Themes_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Themes_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Themes_List_Table\\:\\:tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Themes_List_Table\\:\\:\\$features has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Themes_List_Table\\:\\:\\$search_terms has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-themes-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:add_strings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:after\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:before\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:bulk_footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:bulk_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:decrement_update_count\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:error\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:feedback\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:set_result\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader_Skin\\:\\:set_upgrader\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Upgrader_Skin\\:\\:\\$options type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader-skin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:delete_temp_backup\\(\\) has parameter \\$temp_backups with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:download_package\\(\\) has parameter \\$hook_extra with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:flatten_dirlist\\(\\) has parameter \\$nested_files with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:flatten_dirlist\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:generic_strings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:install_package\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:install_package\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:maintenance_mode\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:restore_temp_backup\\(\\) has parameter \\$temp_backups with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:run\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:run\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Upgrader\\:\\:schedule_temp_backup_cleanup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Upgrader\\:\\:\\$result type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Upgrader\\:\\:\\$strings type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Upgrader\\:\\:\\$temp_backups type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Upgrader\\:\\:\\$temp_restores type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-upgrader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Users_List_Table\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Users_List_Table\\:\\:display_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Users_List_Table\\:\\:extra_tablenav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Users_List_Table\\:\\:get_bulk_actions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Users_List_Table\\:\\:get_sortable_columns\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Users_List_Table\\:\\:no_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Users_List_Table\\:\\:prepare_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/class-wp-users-list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_footer_die\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function enqueue_comment_hotkeys_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_credits_add_profile_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/credits.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_credits_build_object_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/credits.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_credits\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/credits.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_credits_section_list\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/credits.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_credits_section_list\\(\\) has parameter \\$credits with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/credits.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_credits_section_title\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/credits.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_credits_section_title\\(\\) has parameter \\$group_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/credits.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_dashboard_control_callback\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_dashboard_control_callback\\(\\) has parameter \\$meta_box with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_dashboard_recent_comments_row\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_dashboard_widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_dashboard_widget\\(\\) has parameter \\$callback_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_browser_version\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_browser_nag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_cached_rss_widget\\(\\) has parameter \\$check_urls with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_empty\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_events_news\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_php_nag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_primary\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_primary_output\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_primary_output\\(\\) has parameter \\$feeds with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_quick_press\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_recent_drafts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_recent_posts\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_right_now\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_rss_control\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_rss_control\\(\\) has parameter \\$form_inputs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_rss_output\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_site_activity\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_site_health\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dashboard_trigger_widget_control\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_network_dashboard_right_now\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_community_events_markup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_community_events_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_welcome_panel\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/dashboard.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function export_wp\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function export_wp\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wxr_authors_list\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wxr_cat_name\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wxr_category_description\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wxr_nav_menu_terms\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wxr_post_taxonomy\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wxr_tag_description\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wxr_tag_name\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wxr_term_description\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wxr_term_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wxr_term_name\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/export.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function WP_Filesystem\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_handle_upload\\(\\) has parameter \\$file with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_handle_upload\\(\\) has parameter \\$overrides with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_handle_upload\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_filesystem_method\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function request_filesystem_credentials\\(\\) has parameter \\$extra_fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function request_filesystem_credentials\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function verify_file_signature\\(\\) has parameter \\$signatures with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_handle_sideload\\(\\) has parameter \\$file with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_handle_sideload\\(\\) has parameter \\$overrides with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_handle_sideload\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_handle_upload\\(\\) has parameter \\$file with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_handle_upload\\(\\) has parameter \\$overrides with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_handle_upload\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_handle_upload_error\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_handle_upload_error\\(\\) has parameter \\$file with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_handle_upload_error\\(\\) has parameter \\$message with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_opcache_invalidate_directory\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_file_editor_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_request_filesystem_credentials_modal\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function image_edit_apply_changes\\(\\) has parameter \\$changes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_image_editor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_save_image_file\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image-edit.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_image_meta_replace_original\\(\\) has parameter \\$image_meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_image_meta_replace_original\\(\\) has parameter \\$saved_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_image_meta_replace_original\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_make_subsizes\\(\\) has parameter \\$image_meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_make_subsizes\\(\\) has parameter \\$new_sizes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_make_subsizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_copy_parent_attachment_properties\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_create_image_subsizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_generate_attachment_metadata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_missing_image_subsizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_read_image_metadata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_image_subsizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _usort_by_first_member\\(\\) has parameter \\$a with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/import.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _usort_by_first_member\\(\\) has parameter \\$b with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/import.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_importers\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/import.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_popular_importers\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/import.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_import_cleanup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/import.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_import_handle_upload\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/import.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_list_table\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function print_column_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_column_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/list-table.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _cleanup_image_add_caption\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function attachment_submitbox_metadata\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function edit_form_image_editor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_attachment_fields_to_edit\\(\\) has parameter \\$errors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_compat_media_markup\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_media_item\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_media_items\\(\\) has parameter \\$errors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function image_attachment_fields_to_edit\\(\\) has parameter \\$form_fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function image_media_send_to_editor\\(\\) has parameter \\$attachment with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_buttons\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_handle_sideload\\(\\) has parameter \\$post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_handle_upload\\(\\) has parameter \\$overrides with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_handle_upload\\(\\) has parameter \\$post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_post_single_attachment_fields_to_edit\\(\\) has parameter \\$form_fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_post_single_attachment_fields_to_edit\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_send_to_editor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_single_attachment_fields_to_edit\\(\\) has parameter \\$form_fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_single_attachment_fields_to_edit\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_flash_bypass\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_form\\(\\) has parameter \\$errors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_form_handler\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_gallery_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_gallery_form\\(\\) has parameter \\$errors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_html_bypass\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_library_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_library_form\\(\\) has parameter \\$errors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_max_image_resize\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_text_after\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_type_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_type_form\\(\\) has parameter \\$errors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function media_upload_type_url_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function multisite_over_quota_message\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_media_upload_tabs\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_gallery_tab\\(\\) has parameter \\$tabs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_gallery_tab\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_id3_tag_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_id3_tag_data\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_id3_tag_data\\(\\) has parameter \\$metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_media_creation_timestamp\\(\\) has parameter \\$metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_iframe\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_media_attach_action\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_read_audio_metadata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_read_video_metadata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_menu_classes\\(\\) has parameter \\$menu with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_menu_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function sort_menu\\(\\) has parameter \\$a with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function sort_menu\\(\\) has parameter \\$b with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function attachment_id3_data_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function attachment_submit_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function link_advanced_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function link_categories_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function link_submit_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function link_target_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function link_xfn_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function page_attributes_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_author_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_categories_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_categories_meta_box\\(\\) has parameter \\$box with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_comment_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_comment_meta_box_thead\\(\\) has parameter \\$result with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_comment_meta_box_thead\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_comment_status_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_custom_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_excerpt_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_format_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_format_meta_box\\(\\) has parameter \\$box with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_revisions_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_slug_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_submit_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_submit_meta_box\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_tags_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_tags_meta_box\\(\\) has parameter \\$box with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_thumbnail_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_trackback_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_and_do_post_meta_boxes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function xfn_check\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/meta-boxes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function admin_color_scheme_picker\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function heartbeat_autosave\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function heartbeat_autosave\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function heartbeat_autosave\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function insert_with_markers\\(\\) has parameter \\$insertion with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function saveDomDocument\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function set_screen_options\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function show_message\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_home_siteurl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_option_new_admin_email\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_recently_edited\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_canonical_url\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_viewport_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_locked_posts\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_locked_posts\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_locked_posts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_php_version\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_color_scheme_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_heartbeat_set_suspension\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_heartbeat_set_suspension\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_make_plugin_file_tree\\(\\) has parameter \\$plugin_editable_files with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_make_plugin_file_tree\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_make_theme_file_tree\\(\\) has parameter \\$allowed_files with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_make_theme_file_tree\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_page_reload_on_back_button_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_plugin_file_tree\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_plugin_file_tree\\(\\) has parameter \\$tree with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_theme_file_tree\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_theme_file_tree\\(\\) has parameter \\$tree with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_refresh_heartbeat_nonces\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_refresh_heartbeat_nonces\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_refresh_metabox_loader_nonces\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_refresh_metabox_loader_nonces\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_refresh_metabox_loader_nonces\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_refresh_post_lock\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_refresh_post_lock\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_refresh_post_lock\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_refresh_post_nonces\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_refresh_post_nonces\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_refresh_post_nonces\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_reset_vars\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_reset_vars\\(\\) has parameter \\$vars with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/misc.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _access_denied_splash\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _thickbox_path_admin_subfolder\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function avoid_blog_page_permalink_collision\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function avoid_blog_page_permalink_collision\\(\\) has parameter \\$postarr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function avoid_blog_page_permalink_collision\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function check_upload_size\\(\\) has parameter \\$file with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function check_upload_size\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function choose_primary_blog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function confirm_delete_users\\(\\) has parameter \\$users with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function display_space_usage\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_site_screen_help_tab_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function mu_dropdown_languages\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function network_edit_site_nav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function network_edit_site_nav\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function network_settings_add_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upload_space_setting\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ensure_editable_role\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_delete_blog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/ms.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_ajax_menu_quick_search\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_ajax_menu_quick_search\\(\\) has parameter \\$request with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_delete_orphaned_draft_menu_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_expand_nav_menu_post_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_initial_nav_menu_meta_boxes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_nav_menu_item_link_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_nav_menu_item_post_type_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_nav_menu_item_post_type_meta_box\\(\\) has parameter \\$box with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_nav_menu_item_taxonomy_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_nav_menu_item_taxonomy_meta_box\\(\\) has parameter \\$box with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_nav_menu_post_type_meta_boxes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_nav_menu_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_nav_menu_taxonomy_meta_boxes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_save_nav_menu_items\\(\\) has parameter \\$menu_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function network_step1\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function network_step2\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function options_discussion_add_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function options_general_add_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function options_reading_add_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function options_reading_blog_charset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function display_plugins_table\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_dashboard\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_plugin_information\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_plugin_install_status\\(\\) has parameter \\$api with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_plugin_install_status\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_plugins_favorites_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_plugins_upload\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_popular_tags\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_popular_tags\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_search_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function plugins_api\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function plugins_api\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_plugin_action_button\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_dropins\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_plugin_data_markup_translate\\(\\) has parameter \\$plugin_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_plugin_data_markup_translate\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _sort_uname_callback\\(\\) has parameter \\$a with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _sort_uname_callback\\(\\) has parameter \\$b with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_allowed_options\\(\\) has parameter \\$new_options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_allowed_options\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_allowed_options\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function deactivate_plugins\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function deactivated_plugins_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_dropins\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_mu_plugins\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_plugin_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_plugins\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function option_update_filter\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function option_update_filter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function paused_plugins_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function plugin_sandbox_scrape\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_allowed_options\\(\\) has parameter \\$del_options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_allowed_options\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_allowed_options\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_menu_page\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_submenu_page\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function settings_fields\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_privacy_policy_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_clean_plugins_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_plugin_error\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _admin_notice_post_locked\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _disable_content_editor_for_navigation_post_type\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _enable_content_editor_for_navigation_post_type\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_get_allowed_postdata\\(\\) has parameter \\$post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_get_allowed_postdata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_translate_postdata\\(\\) has parameter \\$post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_translate_postdata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function bulk_edit_posts\\(\\) has parameter \\$post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function bulk_edit_posts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function edit_post\\(\\) has parameter \\$post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_block_editor_server_block_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_sample_permalink\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function has_meta\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function redirect_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function taxonomy_meta_box_sanitize_cb_checkboxes\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function taxonomy_meta_box_sanitize_cb_input\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function taxonomy_meta_box_sanitize_cb_input\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_block_editor_meta_box_post_form_hidden_fields\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_block_editor_meta_boxes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_autosave\\(\\) has parameter \\$post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_autosave_post_revisioned_meta_fields\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_autosave_post_revisioned_meta_fields\\(\\) has parameter \\$new_autosave with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_create_post_autosave\\(\\) has parameter \\$post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_edit_attachments_query\\(\\) has parameter \\$q with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_edit_attachments_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_edit_attachments_query_vars\\(\\) has parameter \\$q with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_edit_attachments_query_vars\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_edit_posts_query\\(\\) has parameter \\$q with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_post_lock\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_personal_data_cleanup_requests\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/privacy-tools.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_personal_data_handle_actions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/privacy-tools.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_privacy_generate_personal_data_export_file\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/privacy-tools.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_privacy_generate_personal_data_export_group_html\\(\\) has parameter \\$group_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/privacy-tools.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_privacy_process_personal_data_erasure_page\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/privacy-tools.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_privacy_process_personal_data_erasure_page\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/privacy-tools.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_privacy_process_personal_data_export_page\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/privacy-tools.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_privacy_process_personal_data_export_page\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/privacy-tools.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_revision_ui_diff\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_prepare_revisions_for_js\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_revision_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_network\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_network_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_network_meta\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_options\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_options\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_roles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_roles_160\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_roles_210\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_roles_230\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_roles_250\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_roles_260\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_roles_270\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_roles_280\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_roles_300\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_site_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function populate_site_meta\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_screen_option\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function meta_box_prefs\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function set_current_screen\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/screen.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_create_tag\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_create_term\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_insert_category\\(\\) has parameter \\$catarr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_category\\(\\) has parameter \\$catarr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _admin_search_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_plugin_from_callback\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _list_meta_row\\(\\) has parameter \\$entry with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _local_storage_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_admin_html_begin\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_block_editor_posts_page_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_posts_page_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_meta_box\\(\\) has parameter \\$callback_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_meta_box\\(\\) has parameter \\$screen with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_settings_error\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_settings_field\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_settings_field\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_settings_section\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_settings_section\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function compression_test\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_block_editor_incompatible_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_block_editor_incompatible_meta_box\\(\\) has parameter \\$box with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_settings_fields\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_settings_sections\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function find_posts_div\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_inline_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_settings_errors\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_submit_button\\(\\) has parameter \\$other_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function iframe_footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function iframe_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function list_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function list_meta\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function meta_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function page_template_dropdown\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_meta_box\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_meta_box\\(\\) has parameter \\$screen with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function settings_errors\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function submit_button\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function submit_button\\(\\) has parameter \\$other_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_post_password\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function touch_time\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_category_checklist\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_comment_reply\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_comment_trashnotice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dropdown_roles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dropdown_roles\\(\\) has parameter \\$editable_roles with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_import_upload_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_link_category_checklist\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_star_rating\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_terms_checklist\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function display_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function display_themes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_theme_information\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_theme_search_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_themes_dashboard\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_themes_feature_list\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function install_themes_upload\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function customize_themes_print_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_theme_feature_list\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function paused_themes_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function theme_update_available\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function themes_api\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function themes_api\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_theme_error\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_prepare_themes_for_js\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function translations_api\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/translation-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function translations_api\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/translation-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_available_translations\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/translation-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_install_language_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/translation-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_install_language_form\\(\\) has parameter \\$languages with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/translation-install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _preload_old_requests_classes_and_interfaces\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _redirect_to_about_wordpress\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _upgrade_422_remove_genericons\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _upgrade_440_force_deactivate_incompatible_plugins\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _upgrade_core_deactivate_incompatible_plugins\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_core_updates\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_preferred_from_update_core\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_right_now_message\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_plugin_update_row\\(\\) has parameter \\$plugin_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_plugin_update_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_admin_notice_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_update_row_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_recovery_mode_nag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_theme_update_rows\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function make_db_current\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function make_db_current_silent\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function maybe_disable_automattic_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function maybe_disable_link_manager\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function pre_schema_upgrade\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_100\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_101\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_110\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_130\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_160\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_210\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_230\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_230_old_tables\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_230_options_table\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_250\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_252\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_260\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_270\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_280\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_290\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_300\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_330\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_340\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_350\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_370\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_372\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_380\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_400\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_420\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_430\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_430_fix_comments\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_431\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_440\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_450\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_460\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_500\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_510\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_530\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_550\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_560\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_590\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_600\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_630\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_640\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_650\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_670\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_682\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_700\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_all\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_network\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upgrade_old_slugs\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_mysql_version\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_install\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_install_defaults\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_new_blog_notification\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_upgrade\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/upgrade.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function default_password_nag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function default_password_nag_edit_user\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function default_password_nag_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function delete_users_add_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_editable_roles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function use_ssl_preference\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_is_authorize_application_password_request_valid\\(\\) has parameter \\$request with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_revoke_user\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _sort_name_callback\\(\\) has parameter \\$a with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _sort_name_callback\\(\\) has parameter \\$b with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_widget_controls\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_widget_controls_dynamic_sidebar\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_widget_controls_dynamic_sidebar\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widget_control\\(\\) has parameter \\$sidebar_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widget_control\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function display_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function display_setup_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/install.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function endElement\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/link-parse-opml.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function startElement\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/link-parse-opml.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function startElement\\(\\) has parameter \\$attrs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/link-parse-opml.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_menu_output\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/menu-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_menu_output\\(\\) has parameter \\$menu with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/menu-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_menu_output\\(\\) has parameter \\$submenu with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/menu-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _add_plugin_file_editor_to_tools\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _add_themes_utility_last\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_load_press_this\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/press-this.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function setup_config_display_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/setup-config.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function core_auto_updates_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function core_upgrade_preamble\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function dismissed_updates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_core_upgrade\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_dismiss_core_update\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_undismiss_core_update\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function list_core_update\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function list_plugin_updates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function list_theme_updates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function list_translation_updates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-admin/update-core.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_admin_header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_admin_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_block_editor_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_body_classes\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_body_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_comment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_content_nav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_footer_sidebar_class\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_get_gallery_images\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_page_menu_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_page_menu_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_posted_on\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_scripts_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_skip_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_widget_tag_cloud_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_widget_tag_cloud_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_widgets_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_body_open\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_admin_enqueue_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_customize_preview_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_enqueue_color_scheme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_print_link_color_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_settings_field_color_scheme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_settings_field_layout\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_settings_field_link_color\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_theme_options_add_page\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_theme_options_help\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_theme_options_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_theme_options_render_page\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyeleven_theme_options_validate\\(\\) has parameter \\$input with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/theme-options.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Eleven_Ephemera_Widget\\:\\:Twenty_Eleven_Ephemera_Widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Eleven_Ephemera_Widget\\:\\:flush_widget_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Eleven_Ephemera_Widget\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Eleven_Ephemera_Widget\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Eleven_Ephemera_Widget\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Eleven_Ephemera_Widget\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Eleven_Ephemera_Widget\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyeleven/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_block_editor_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_javascript_detection\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_post_nav_background\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_register_block_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_resource_hints\\(\\) has parameter \\$urls with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_resource_hints\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_widget_tag_cloud_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_widget_tag_cloud_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_widgets_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_customize\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_preview\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_switch_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_upgrade_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_custom_header_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_header_background_color_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_hex2rgb\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_sidebar_text_color_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_color_scheme_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_color_scheme_css_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_customize_control_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_customize_preview_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_get_color_scheme\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_get_color_scheme_choices\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_get_color_scheme_css\\(\\) has parameter \\$colors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_get_color_schemes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_category_transient_flusher\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_comment_nav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_entry_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_post_thumbnail\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfifteen_the_custom_logo\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_body_open\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfifteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function is_customize_preview\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_admin_fonts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_block_editor_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_body_classes\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_body_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_content_width\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_get_featured_posts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_list_authors\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_post_classes\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_post_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_register_block_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_resource_hints\\(\\) has parameter \\$urls with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_resource_hints\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_the_attached_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_widget_tag_cloud_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_widget_tag_cloud_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_widgets_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_customize\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_preview\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_switch_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_upgrade_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_admin_header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_admin_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_custom_header_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_contextual_help\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_customize_preview_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:delete_post_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:delete_transient\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:enqueue_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:get_featured_post_ids\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:get_featured_posts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:get_sticky_posts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:hide_featured_term\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:hide_featured_term\\(\\) has parameter \\$taxonomies with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:hide_featured_term\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:hide_featured_term\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:hide_the_featured_term\\(\\) has parameter \\$taxonomy with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:hide_the_featured_term\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:hide_the_featured_term\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:register_setting\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:validate_settings\\(\\) has parameter \\$input with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:validate_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Featured_Content\\:\\:wp_loaded\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/featured-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_category_transient_flusher\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_paging_nav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_post_nav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_post_thumbnail\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyfourteen_posted_on\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_body_open\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Fourteen_Ephemera_Widget\\:\\:enqueue_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Fourteen_Ephemera_Widget\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Fourteen_Ephemera_Widget\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Fourteen_Ephemera_Widget\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Fourteen_Ephemera_Widget\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Fourteen_Ephemera_Widget\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Fourteen_Ephemera_Widget\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Fourteen_Ephemera_Widget\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Twenty_Fourteen_Ephemera_Widget\\:\\:\\$formats type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyfourteen/inc/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property TwentyNineteen_SVG_Icons\\:\\:\\$social_icons type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property TwentyNineteen_SVG_Icons\\:\\:\\$social_icons_map type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property TwentyNineteen_SVG_Icons\\:\\:\\$ui_icons type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyNineteen_Walker_Comment\\:\\:html5_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyNineteen_Walker_Comment\\:\\:html5_comment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_colors_css_wrap\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_content_width\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_editor_customizer_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_register_block_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_skip_link_focus_fix\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_widgets_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_customize\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_preview\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_switch_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_upgrade_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_custom_colors_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/color-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_customize_preview_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_panels_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_can_show_post_thumbnail\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/helper-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_get_avatar_size\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/helper-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_get_discussion_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/helper-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_hsl_hex\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/helper-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_image_filters_enabled\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/helper-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_get_icon_svg\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/icon-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_get_social_icon_svg\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/icon-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_get_social_link_svg\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/icon-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_add_mobile_parent_nav_menu_items\\(\\) has parameter \\$sorted_menu_items with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_add_mobile_parent_nav_menu_items\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_body_classes\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_comment_form_defaults\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_comment_form_defaults\\(\\) has parameter \\$defaults with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_get_the_archive_title\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_nav_menu_link_attributes\\(\\) has parameter \\$atts with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_pingback_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_post_classes\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_post_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_comment_count\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_comment_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_comment_form\\(\\) has parameter \\$order with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_discussion_avatars_list\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_discussion_avatars_list\\(\\) has parameter \\$comment_authors with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_entry_footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_get_user_avatar_markup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_get_user_avatar_markup\\(\\) has parameter \\$id_or_email with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_post_thumbnail\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_posted_by\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_posted_on\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentynineteen_the_posts_navigation\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_body_open\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentynineteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_block_editor_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_colors_css_wrap\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_content_image_sizes_attr\\(\\) has parameter \\$size with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_content_width\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_header_image_tag\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_javascript_detection\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_pingback_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_register_block_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_resource_hints\\(\\) has parameter \\$urls with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_resource_hints\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_widget_tag_cloud_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_widget_tag_cloud_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_widgets_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_customize\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_preview\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_switch_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_upgrade_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_custom_colors_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/color-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_custom_header_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_video_controls\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_video_controls\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_customize_preview_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_is_view_with_layout_option\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_panels_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_sanitize_colorscheme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_sanitize_page_layout\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_get_svg\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/icon-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_include_svg_icons\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/icon-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_social_links_icons\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/icon-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_body_classes\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_category_transient_flusher\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_edit_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_entry_footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_front_page_section\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_posted_on\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyseventeen_time_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_body_open\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyseventeen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_block_editor_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_body_classes\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_body_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_content_image_sizes_attr\\(\\) has parameter \\$size with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_content_width\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_hex2rgb\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_javascript_detection\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_register_block_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_resource_hints\\(\\) has parameter \\$urls with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_resource_hints\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_widget_tag_cloud_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_widget_tag_cloud_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_widgets_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_customize\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_preview\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_switch_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_upgrade_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_color_scheme_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_color_scheme_css_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_custom_header_and_background\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_customize_control_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_customize_preview_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_get_color_scheme\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_get_color_scheme_choices\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_get_color_scheme_css\\(\\) has parameter \\$colors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_get_color_schemes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_link_color_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_main_text_color_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_page_background_color_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_secondary_text_color_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/customizer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_category_transient_flusher\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_entry_date\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_entry_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_entry_taxonomies\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_excerpt\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_post_thumbnail\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentysixteen_the_custom_logo\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_body_open\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentysixteen/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_admin_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_block_editor_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_comment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_get_gallery_images\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_page_menu_args\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_page_menu_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_posted_in\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_posted_on\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_register_block_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_remove_recent_comments_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_scripts_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_widget_tag_cloud_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_widget_tag_cloud_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentyten_widgets_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_body_open\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentyten/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_block_editor_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_body_class\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_body_class\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_content_width\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_customize_preview_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_entry_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_paging_nav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_post_nav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_register_block_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_register_block_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_resource_hints\\(\\) has parameter \\$urls with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_resource_hints\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_scripts_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_the_attached_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_widget_tag_cloud_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_widget_tag_cloud_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_widgets_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_body_open\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_customize\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_preview\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_switch_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_upgrade_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/inc/back-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_admin_header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_admin_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_custom_header_fonts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_custom_header_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentythirteen_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentythirteen/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_block_editor_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_body_class\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_body_class\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_comment\\(\\) has parameter \\$args with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_comment\\(\\) has parameter \\$comment with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_comment\\(\\) has parameter \\$depth with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_content_nav\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_content_nav\\(\\) has parameter \\$html_id with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_content_width\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_customize_preview_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_entry_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_page_menu_args\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_page_menu_args\\(\\) has parameter \\$args with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_register_block_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_resource_hints\\(\\) has parameter \\$urls with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_resource_hints\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_scripts_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_widget_tag_cloud_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_widget_tag_cloud_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_widgets_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_body_open\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_admin_header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_admin_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_custom_header_fonts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_custom_header_setup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwelve_header_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwelve/inc/custom-header.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_customize_opacity_range\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_customize_partial_blogdescription\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_customize_partial_blogname\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_customize_partial_site_logo\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyTwenty_Customize\\:\\:register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyTwenty_Customize\\:\\:sanitize_accent_accessible_colors\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyTwenty_Customize\\:\\:sanitize_accent_accessible_colors\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyTwenty_Separator_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-separator-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyTwenty_SVG_Icons\\:\\:get_social_link_svg\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyTwenty_SVG_Icons\\:\\:get_svg\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property TwentyTwenty_SVG_Icons\\:\\:\\$social_icons type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property TwentyTwenty_SVG_Icons\\:\\:\\$social_icons_map type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property TwentyTwenty_SVG_Icons\\:\\:\\$ui_icons type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyTwenty_Walker_Comment\\:\\:html5_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyTwenty_Walker_Comment\\:\\:html5_comment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyTwenty_Walker_Page\\:\\:start_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method TwentyTwenty_Walker_Page\\:\\:start_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_add_classic_editor_customizer_styles\\(\\) has parameter \\$mce_init with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_add_classic_editor_customizer_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_add_classic_editor_non_latin_styles\\(\\) has parameter \\$mce_init with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_add_classic_editor_non_latin_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_block_editor_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_block_editor_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_classic_editor_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_get_customizer_color_vars\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_get_elements_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_menus\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_register_block_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_register_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_register_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_sidebar_registration\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_skip_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_skip_link_focus_fix\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_theme_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_body_open\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_get_starter_content\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/starter-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_get_theme_svg\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_the_theme_svg\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_body_classes\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_body_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_edit_post_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_filter_wp_list_pages_item_classes\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_filter_wp_list_pages_item_classes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_no_js_class\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_site_logo\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twentytwenty_the_post_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwenty/inc/template-tags.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Twenty_One_Custom_Colors\\:\\:body_class\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-custom-colors.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Twenty_One_Custom_Colors\\:\\:body_class\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-custom-colors.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Twenty_Twenty_One_Customize_Color_Control\\:\\:\\$palette type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize-color-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Twenty_Twenty_One_Dark_Mode\\:\\:the_html\\(\\) has parameter \\$attrs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Twenty_Twenty_One_SVG_Icons\\:\\:\\$icons type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Twenty_Twenty_One_SVG_Icons\\:\\:\\$social_icons type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property Twenty_Twenty_One_SVG_Icons\\:\\:\\$social_icons_map type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-svg-icons.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twenty_twenty_one_skip_link_focus_fix\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twenty_twenty_one_get_starter_content\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/inc/starter-content.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twenty_twenty_one_body_classes\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twenty_twenty_one_comment_form_defaults\\(\\) has parameter \\$defaults with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twenty_twenty_one_comment_form_defaults\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twenty_twenty_one_continue_reading_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twenty_twenty_one_continue_reading_link_excerpt\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twenty_twenty_one_continue_reading_text\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function twenty_twenty_one_post_classes\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-content/themes/twentytwentyone/inc/template-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function show_admin_bar\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_add_secondary_groups\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_appearance_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_comments_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_customize_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_edit_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_edit_site_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_my_account_item\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_my_account_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_my_sites_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_new_content_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_recovery_mode_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_render\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_search_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_shortlink_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_sidebar_toggle\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_site_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_updates_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_bar_wp_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_admin_bar_bump_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_admin_bar_header_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ai_client_prompt\\(\\) has parameter \\$prompt with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ai-client.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_AI_Client_Prompt_Builder\\:\\:__construct\\(\\) has parameter \\$prompt with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ai-client/class-wp-ai-client-prompt-builder.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function __clear_multi_author_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/author-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_author_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/author-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_author_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/author-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_author_posts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/author-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_author_posts_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/author-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_modified_author\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/author-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_authors\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/author-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_block_bindings_supported_attributes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-bindings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_block_bindings_source\\(\\) has parameter \\$source_properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-bindings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _block_bindings_pattern_overrides_get_value\\(\\) has parameter \\$source_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-bindings/pattern-overrides.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _register_block_bindings_pattern_overrides_source\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-bindings/pattern-overrides.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _block_bindings_post_data_get_value\\(\\) has parameter \\$source_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-bindings/post-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _register_block_bindings_post_data_source\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-bindings/post-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _block_bindings_post_meta_get_value\\(\\) has parameter \\$source_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-bindings/post-meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _register_block_bindings_post_meta_source\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-bindings/post-meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _block_bindings_term_data_get_value\\(\\) has parameter \\$source_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-bindings/term-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _register_block_bindings_term_data_source\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-bindings/term-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_get_iframed_editor_assets\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function block_editor_rest_api_preload\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_block_categories\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_block_editor_settings\\(\\) has parameter \\$custom_settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_block_editor_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_block_editor_theme_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_classic_theme_supports_block_editor_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_default_block_categories\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_default_block_editor_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_legacy_widget_block_editor_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_first_block\\(\\) has parameter \\$blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_first_block\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_post_content_block_attributes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_initialize_site_preview_hooks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _load_remote_block_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _load_remote_featured_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _register_core_block_patterns_and_categories\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _register_remote_theme_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _register_theme_block_patterns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_block_pattern\\(\\) has parameter \\$pattern_properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_block_pattern_category\\(\\) has parameter \\$category_properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_normalize_remote_block_pattern\\(\\) has parameter \\$pattern with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_normalize_remote_block_pattern\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-patterns.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_alignment_support\\(\\) has parameter \\$block_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/align.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_alignment_support\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/align.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_alignment_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/align.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_anchor_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/anchor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_aria_label_support\\(\\) has parameter \\$block_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/aria-label.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_aria_label_support\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/aria-label.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_aria_label_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/aria-label.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_background_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_background_support\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/background.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_block_style_variation_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-style-variations.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_block_style_variation_name_from_class\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-style-variations.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_block_style_variations_from_theme_json_partials\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-style-variations.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_block_style_variations_from_theme_json_partials\\(\\) has parameter \\$variations with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-style-variations.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_block_style_variation_class_name\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-style-variations.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_block_style_variation_support_styles\\(\\) has parameter \\$parsed_block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-style-variations.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_block_style_variation_support_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-style-variations.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_resolve_block_style_variation_ref_values\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-style-variations.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_resolve_block_style_variation_ref_values\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-style-variations.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_resolve_block_style_variation_ref_values\\(\\) has parameter \\$variation_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-style-variations.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_block_visibility_support\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/block-visibility.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_border_support\\(\\) has parameter \\$block_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/border.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_border_support\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/border.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_border_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/border.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_colors_support\\(\\) has parameter \\$block_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/colors.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_colors_support\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/colors.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_colors_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/colors.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_custom_classname_support\\(\\) has parameter \\$block_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/custom-classname.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_custom_classname_support\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/custom-classname.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_custom_classname_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/custom-classname.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_block_custom_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/custom-css.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_custom_css_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/custom-css.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_custom_css_class_name\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/custom-css.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_custom_css_support_styles\\(\\) has parameter \\$parsed_block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/custom-css.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_custom_css_support_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/custom-css.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_dimensions_support\\(\\) has parameter \\$block_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/dimensions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_dimensions_support\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/dimensions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_dimensions_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/dimensions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_dimensions_support\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/dimensions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_elements_class_name\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/elements.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_elements_class_name\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/elements.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_elements_support_styles\\(\\) has parameter \\$parsed_block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/elements.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_elements_support_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/elements.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_should_add_elements_class_name\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/elements.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_should_add_elements_class_name\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/elements.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_generated_classname_support\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/generated-classname.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_parent_layout_to_parsed_block\\(\\) has parameter \\$parsed_block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_parent_layout_to_parsed_block\\(\\) has parameter \\$source_block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_parent_layout_to_parsed_block\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_layout_definitions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_layout_style\\(\\) has parameter \\$block_spacing with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_layout_style\\(\\) has parameter \\$fallback_gap_value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_layout_style\\(\\) has parameter \\$layout with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_layout_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_layout_support_flag\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_restore_group_inner_container\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_restore_image_outer_container\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/layout.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_position_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/position.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_position_support\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/position.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_add_block_level_preset_styles\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_add_block_level_presets_class\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_get_presets_class_name\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_shadow_support\\(\\) has parameter \\$block_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/shadow.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_shadow_support\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/shadow.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_shadow_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/shadow.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_spacing_support\\(\\) has parameter \\$block_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/spacing.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_spacing_support\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/spacing.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_spacing_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/spacing.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_typography_support\\(\\) has parameter \\$block_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/typography.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_apply_typography_support\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/typography.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_computed_fluid_typography_value\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/typography.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_typography_font_size_value\\(\\) has parameter \\$preset with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/typography.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_typography_font_size_value\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/typography.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_typography_value_and_unit\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/typography.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_typography_value_and_unit\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/typography.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_typography_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/typography.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_render_typography_support\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-supports/typography.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _add_block_template_info\\(\\) has parameter \\$template_item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _add_block_template_info\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _add_block_template_part_area_info\\(\\) has parameter \\$template_info with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _add_block_template_part_area_info\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _build_block_template_object_from_post_object\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _build_block_template_object_from_post_object\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _build_block_template_result_from_file\\(\\) has parameter \\$template_file with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _flatten_blocks\\(\\) has parameter \\$blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _flatten_blocks\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_block_template_file\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_block_templates_files\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_block_templates_files\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _inject_theme_attribute_in_template_part_block\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _inject_theme_attribute_in_template_part_block\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _remove_theme_attribute_from_template_part_block\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _remove_theme_attribute_from_template_part_block\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function block_footer_area\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function block_header_area\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function block_template_part\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_allowed_block_template_part_areas\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_block_templates\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_default_block_template_types\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _add_template_loader_filters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _block_template_render_title_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _block_template_render_without_post_block_context\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _block_template_render_without_post_block_context\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _block_template_viewport_meta_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _resolve_template_for_new_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_block_template\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Tag_Processor@anonymous/wp\\-includes/block\\-template\\.php\\:352\\:\\:insert_before\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/block-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _excerpt_render_inner_blocks\\(\\) has parameter \\$allowed_blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _excerpt_render_inner_blocks\\(\\) has parameter \\$parsed_block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _filter_block_content_callback\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_enqueue_auto_register_blocks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_footnotes_kses_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_footnotes_kses_init_filters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_footnotes_remove_filters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function apply_block_hooks_to_content\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function block_has_support\\(\\) has parameter \\$feature with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function build_comment_query_vars_from_block\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function build_query_vars_from_query_block\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function filter_block_content\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function filter_block_core_template_part_attributes\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function filter_block_kses\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function filter_block_kses\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function filter_block_kses_value\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function filter_block_kses_value\\(\\) has parameter \\$block_context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_comment_delimited_block_content\\(\\) has parameter \\$block_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_hooked_blocks\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function insert_hooked_blocks\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function insert_hooked_blocks\\(\\) has parameter \\$hooked_blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function insert_hooked_blocks\\(\\) has parameter \\$parsed_anchor_block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function insert_hooked_blocks_and_set_ignored_hooked_blocks_metadata\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function insert_hooked_blocks_and_set_ignored_hooked_blocks_metadata\\(\\) has parameter \\$hooked_blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function insert_hooked_blocks_and_set_ignored_hooked_blocks_metadata\\(\\) has parameter \\$parsed_anchor_block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function make_after_block_visitor\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function make_after_block_visitor\\(\\) has parameter \\$hooked_blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function make_before_block_visitor\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function make_before_block_visitor\\(\\) has parameter \\$hooked_blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function parse_blocks\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_block_script_handle\\(\\) has parameter \\$metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_block_script_module_id\\(\\) has parameter \\$metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_block_style\\(\\) has parameter \\$style_properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_block_style_handle\\(\\) has parameter \\$metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_block_type\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_block_type_from_metadata\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function render_block\\(\\) has parameter \\$parsed_block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function resolve_pattern_blocks\\(\\) has parameter \\$blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function resolve_pattern_blocks\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function serialize_block\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function serialize_block_attributes\\(\\) has parameter \\$block_attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function serialize_blocks\\(\\) has parameter \\$blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function set_ignored_hooked_blocks_metadata\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function set_ignored_hooked_blocks_metadata\\(\\) has parameter \\$hooked_blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function set_ignored_hooked_blocks_metadata\\(\\) has parameter \\$parsed_anchor_block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function traverse_and_serialize_block\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function traverse_and_serialize_blocks\\(\\) has parameter \\$blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_migrate_old_typography_shape\\(\\) has parameter \\$metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_migrate_old_typography_shape\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_block_metadata_collection\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_block_types_from_metadata_collection\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/blocks.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _walk_bookmarks\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/bookmark-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _walk_bookmarks\\(\\) has parameter \\$bookmarks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/bookmark-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_bookmarks\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/bookmark-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_bookmark_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/bookmark.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_bookmark\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/bookmark.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_bookmarks\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/bookmark.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function sanitize_bookmark\\(\\) has parameter \\$bookmark with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/bookmark.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function sanitize_bookmark\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/bookmark.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_add_multiple\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_delete_multiple\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_get_multiple\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_get_multiple\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_get_multiple_salted\\(\\) has parameter \\$cache_keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_get_multiple_salted\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_set_multiple\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache-compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_add_global_groups\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_add_multiple\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_add_non_persistent_groups\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_delete_multiple\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_get_multiple\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_get_multiple\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_reset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_set_multiple\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_switch_to_blog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _remove_qs_args_if_not_in_url\\(\\) has parameter \\$args_to_check with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/canonical.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function lowercase_octets\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/canonical.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_redirect_admin_locations\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/canonical.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_role\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/capabilities.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_grant_site_health_caps\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/capabilities.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_category_parents\\(\\) has parameter \\$deprecated with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_term_parents_list\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function has_category\\(\\) has parameter \\$category with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function has_tag\\(\\) has parameter \\$tag with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function has_term\\(\\) has parameter \\$term with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_category\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_tags\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dropdown_categories\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_generate_tag_cloud\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_categories\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_tag_cloud\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _make_cat_compat\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _make_cat_compat\\(\\) has parameter \\$category with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_category_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_categories\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_categories\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_category\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_category_by_path\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_tag\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_tags\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function sanitize_category\\(\\) has parameter \\$category with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function sanitize_category\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_CategoryDropdown\\:\\:start_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-category-dropdown.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_CategoryDropdown\\:\\:start_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-category-dropdown.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category\\:\\:end_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category\\:\\:end_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category\\:\\:end_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category\\:\\:end_lvl\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category\\:\\:start_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category\\:\\:start_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category\\:\\:start_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Category\\:\\:start_lvl\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-category.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:comment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:display_element\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:display_element\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:display_element\\(\\) has parameter \\$children_elements with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:end_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:end_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:end_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:end_lvl\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:html5_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:html5_comment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:ping\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:ping\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:start_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:start_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:start_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Comment\\:\\:start_lvl\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu\\:\\:build_atts\\(\\) has parameter \\$atts with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu\\:\\:end_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu\\:\\:end_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu\\:\\:start_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Nav_Menu\\:\\:start_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_PageDropdown\\:\\:start_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-page-dropdown.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_PageDropdown\\:\\:start_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-page-dropdown.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Page\\:\\:end_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Page\\:\\:end_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Page\\:\\:end_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Page\\:\\:end_lvl\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Page\\:\\:start_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Page\\:\\:start_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Page\\:\\:start_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker_Page\\:\\:start_lvl\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-walker-page.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:_get_nodes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:_render\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:_render_container\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:_render_group\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:_render_item\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:_set_node\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:_set_node\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:_unset_node\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:add_group\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:add_group\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:add_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:add_menu\\(\\) has parameter \\$node with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:add_menus\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:add_node\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:add_node\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:get_nodes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:initialize\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:recursive_render\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:remove_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:remove_node\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Admin_Bar\\:\\:render\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Admin_Bar\\:\\:\\$bound has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Admin_Bar\\:\\:\\$menu type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Admin_Bar\\:\\:\\$nodes has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Admin_Bar\\:\\:\\$user has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-admin-bar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Ajax_Response\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-ajax-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Ajax_Response\\:\\:add\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-ajax-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Ajax_Response\\:\\:send\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-ajax-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Ajax_Response\\:\\:\\$responses type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-ajax-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords\\:\\:create_new_application_password\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-application-passwords.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords\\:\\:create_new_application_password\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-application-passwords.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords\\:\\:get_user_application_password\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-application-passwords.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords\\:\\:get_user_application_passwords\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-application-passwords.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords\\:\\:set_user_application_passwords\\(\\) has parameter \\$passwords with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-application-passwords.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Application_Passwords\\:\\:update_application_password\\(\\) has parameter \\$update with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-application-passwords.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Bindings_Registry\\:\\:register\\(\\) has parameter \\$source_properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-bindings-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Bindings_Source\\:\\:__construct\\(\\) has parameter \\$source_properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-bindings-source.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Bindings_Source\\:\\:get_value\\(\\) has parameter \\$source_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-bindings-source.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Editor_Context\\:\\:__construct\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-editor-context.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Class WP_Block_List implements generic interface ArrayAccess but does not specify its types\\: TKey, TValue$#', + 'identifier' => 'missingType.generics', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-list.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Class WP_Block_List implements generic interface Iterator but does not specify its types\\: TKey, TValue$#', + 'identifier' => 'missingType.generics', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-list.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_List\\:\\:__construct\\(\\) has parameter \\$available_context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-list.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_List\\:\\:__construct\\(\\) has parameter \\$blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-list.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_List\\:\\:offsetSet\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-list.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_List\\:\\:\\$available_context type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-list.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_List\\:\\:\\$blocks type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-list.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Metadata_Registry\\:\\:get_metadata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-metadata-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Parser_Block\\:\\:__construct\\(\\) has parameter \\$attrs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Parser_Block\\:\\:__construct\\(\\) has parameter \\$inner_blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Parser_Block\\:\\:__construct\\(\\) has parameter \\$inner_content with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Parser_Block\\:\\:\\$attrs type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Parser_Block\\:\\:\\$innerContent type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Parser\\:\\:add_block_from_stack\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Parser\\:\\:add_freeform\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Parser\\:\\:add_inner_block\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Parser\\:\\:next_token\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Parser\\:\\:parse\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Parser\\:\\:\\$output type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-parser.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Pattern_Categories_Registry\\:\\:get_all_registered\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-pattern-categories-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Pattern_Categories_Registry\\:\\:get_registered\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-pattern-categories-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Pattern_Categories_Registry\\:\\:register\\(\\) has parameter \\$category_properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-pattern-categories-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Pattern_Categories_Registry\\:\\:\\$registered_categories type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-pattern-categories-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Pattern_Categories_Registry\\:\\:\\$registered_categories_outside_init type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-pattern-categories-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Patterns_Registry\\:\\:get_all_registered\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-patterns-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Patterns_Registry\\:\\:get_registered\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-patterns-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Patterns_Registry\\:\\:register\\(\\) has parameter \\$pattern_properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-patterns-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Patterns_Registry\\:\\:\\$registered_patterns type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-patterns-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Patterns_Registry\\:\\:\\$registered_patterns_outside_init type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-patterns-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Processor\\:\\:allocate_and_return_parsed_attributes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Processor\\:\\:extract_full_block_and_advance\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Styles_Registry\\:\\:get_all_registered\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-styles-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Styles_Registry\\:\\:get_registered\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-styles-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Styles_Registry\\:\\:get_registered_styles_for_block\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-styles-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Styles_Registry\\:\\:register\\(\\) has parameter \\$style_properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-styles-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Styles_Registry\\:\\:\\$registered_block_styles type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-styles-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Supports\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-supports.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Supports\\:\\:register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-supports.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Supports\\:\\:register\\(\\) has parameter \\$block_support_config with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-supports.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Supports\\:\\:register_attributes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-supports.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Supports\\:\\:\\$block_supports type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-supports.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Supports\\:\\:\\$block_to_render type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-supports.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Templates_Registry\\:\\:get_by_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-templates-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Templates_Registry\\:\\:register\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-templates-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Templates_Registry\\:\\:\\$registered_templates has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-templates-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Type_Registry\\:\\:register\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Block_Type\\:\\:GLOBAL_ATTRIBUTES type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Type\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Type\\:\\:get_attributes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Type\\:\\:get_variations\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Type\\:\\:prepare_attributes_for_render\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Type\\:\\:prepare_attributes_for_render\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Type\\:\\:render\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Type\\:\\:set_props\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block_Type\\:\\:set_props\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Type\\:\\:\\$attributes type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Type\\:\\:\\$example type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Type\\:\\:\\$selectors type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Type\\:\\:\\$styles type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Type\\:\\:\\$supports type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block_Type\\:\\:\\$variations type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Class WP_Block has PHPDoc tag @property for property \\$attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block\\:\\:__construct\\(\\) has parameter \\$available_context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block\\:\\:__construct\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block\\:\\:__get\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block\\:\\:get_block_bindings_processor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block\\:\\:process_block_bindings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block\\:\\:refresh_context_dependents\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block\\:\\:refresh_parsed_block_dependents\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Block\\:\\:render\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block\\:\\:\\$available_context type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block\\:\\:\\$context type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block\\:\\:\\$inner_content type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Block\\:\\:\\$parsed_block type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Classic_To_Block_Menu_Converter\\:\\:group_by_parent_id\\(\\) has parameter \\$menu_items with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-classic-to-block-menu-converter.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Classic_To_Block_Menu_Converter\\:\\:group_by_parent_id\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-classic-to-block-menu-converter.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Classic_To_Block_Menu_Converter\\:\\:to_blocks\\(\\) has parameter \\$menu_items with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-classic-to-block-menu-converter.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Classic_To_Block_Menu_Converter\\:\\:to_blocks\\(\\) has parameter \\$menu_items_by_parent_id with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-classic-to-block-menu-converter.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Classic_To_Block_Menu_Converter\\:\\:to_blocks\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-classic-to-block-menu-converter.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment_Query\\:\\:__call\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment_Query\\:\\:__construct\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment_Query\\:\\:fill_descendants\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment_Query\\:\\:get_comment_ids\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment_Query\\:\\:parse_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment_Query\\:\\:parse_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment_Query\\:\\:query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment_Query\\:\\:query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment_Query\\:\\:set_found_comments\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comment_Query\\:\\:\\$meta_query_clauses type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comment_Query\\:\\:\\$query_var_defaults type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comment_Query\\:\\:\\$query_vars type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comment_Query\\:\\:\\$sql_clauses type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment\\:\\:add_child\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment\\:\\:get_children\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment\\:\\:populated_children\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Comment\\:\\:to_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comment\\:\\:\\$children type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Comment\\:\\:\\$post_fields type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Control\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Control\\:\\:enqueue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Control\\:\\:input_attrs\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Control\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Control\\:\\:link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Control\\:\\:maybe_render\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Control\\:\\:print_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Control\\:\\:render\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Control\\:\\:to_json\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Control\\:\\:\\$choices type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Control\\:\\:\\$input_attrs type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Control\\:\\:\\$json type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Control\\:\\:\\$settings type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:_save_starter_content_changeset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:add_control\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:add_customize_screen_to_heartbeat_settings\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:add_customize_screen_to_heartbeat_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:add_dynamic_settings\\(\\) has parameter \\$setting_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:add_dynamic_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:add_panel\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:add_section\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:add_setting\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:after_setup_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:changeset_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:check_changeset_lock_with_heartbeat\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:check_changeset_lock_with_heartbeat\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:check_changeset_lock_with_heartbeat\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:containers\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:controls\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:customize_pane_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:customize_preview_base\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:customize_preview_html5\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:customize_preview_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:customize_preview_loading_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:customize_preview_override_404_status\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:customize_preview_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:customize_preview_signature\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:enqueue_control_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:establish_loaded_changeset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:export_header_video_settings\\(\\) has parameter \\$partials with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:export_header_video_settings\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:export_header_video_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:filter_iframe_security_headers\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:filter_iframe_security_headers\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:get_allowed_urls\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:get_changeset_post_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:get_changeset_posts\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:get_lock_user_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:get_nonces\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:get_previewable_devices\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:grant_edit_post_capability_for_changeset\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:grant_edit_post_capability_for_changeset\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:handle_changeset_trash_request\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:handle_dismiss_autosave_or_lock_request\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:handle_load_themes_request\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:handle_override_changeset_lock_request\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:import_theme_starter_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:import_theme_starter_content\\(\\) has parameter \\$starter_content with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:panels\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:prepare_controls\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:prepare_setting_validity_for_js\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:prepare_starter_content_attachments\\(\\) has parameter \\$attachments with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:prepare_starter_content_attachments\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:preserve_insert_changeset_post_content\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:preserve_insert_changeset_post_content\\(\\) has parameter \\$postarr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:preserve_insert_changeset_post_content\\(\\) has parameter \\$unsanitized_postarr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:preserve_insert_changeset_post_content\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:refresh_changeset_lock\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:refresh_nonces\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:register_control_type\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:register_controls\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:register_dynamic_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:register_panel_type\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:register_section_type\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:remove_control\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:remove_frameless_preview_messenger_channel\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:remove_panel\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:remove_section\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:remove_setting\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:render_control_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:render_panel_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:render_section_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:save\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:save_changeset_post\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:save_changeset_post\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:sections\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:set_autofocus\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:set_autofocus\\(\\) has parameter \\$autofocus with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:set_changeset_lock\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:set_post_value\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:set_preview_url\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:set_return_url\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:setup_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:start_previewing_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:stop_previewing_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:unsanitized_post_values\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:unsanitized_post_values\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:update_stashed_theme_mod_settings\\(\\) has parameter \\$inactive_theme_mod_settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:update_stashed_theme_mod_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:validate_setting_values\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:validate_setting_values\\(\\) has parameter \\$setting_values with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:validate_setting_values\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:wp_die\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Manager\\:\\:wp_loaded\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$_changeset_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$_post_values type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$components type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$containers type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$controls type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$panels type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$pending_starter_content_settings_ids type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$registered_control_types type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$registered_panel_types type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$registered_section_types type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$sections type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Manager\\:\\:\\$settings type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-manager.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:ajax_insert_auto_draft_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:ajax_load_available_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:ajax_search_available_items\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:available_item_types\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:available_items_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:customize_dynamic_partial_args\\(\\) has parameter \\$partial_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:customize_dynamic_partial_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:customize_preview_enqueue_deps\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:customize_preview_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:enqueue_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:export_partial_rendered_nav_menu_instances\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:export_partial_rendered_nav_menu_instances\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:export_preview_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:filter_dynamic_setting_args\\(\\) has parameter \\$setting_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:filter_dynamic_setting_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:filter_dynamic_setting_class\\(\\) has parameter \\$setting_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:filter_wp_nav_menu_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:filter_wp_nav_menu_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:hash_nav_menu_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:insert_auto_draft_post\\(\\) has parameter \\$postarr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:load_available_items_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:make_auto_draft_status_previewable\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:print_custom_links_available_menu_item\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:print_post_type_container\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:print_post_type_container\\(\\) has parameter \\$available_item_type with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:print_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:render_nav_menu_partial\\(\\) has parameter \\$nav_menu_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:sanitize_nav_menus_created_posts\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:sanitize_nav_menus_created_posts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:save_nav_menus_created_posts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:search_available_items_query\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus\\:\\:search_available_items_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Nav_Menus\\:\\:\\$original_nav_menu_locations type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Nav_Menus\\:\\:\\$preview_nav_menu_instance_args type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-nav-menus.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Panel\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Panel\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Panel\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Panel\\:\\:maybe_render\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Panel\\:\\:print_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Panel\\:\\:render\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Panel\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Panel\\:\\:render_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Panel\\:\\:\\$sections type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Section\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Section\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Section\\:\\:maybe_render\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Section\\:\\:print_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Section\\:\\:render\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Section\\:\\:render_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Section\\:\\:\\$controls type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:_clear_aggregated_multidimensional_preview_applied_flag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:_update_option\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:_update_theme_mod\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:aggregate_multidimensional\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:id_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:multidimensional\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:multidimensional\\(\\) has parameter \\$root with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:multidimensional\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:multidimensional_get\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:multidimensional_get\\(\\) has parameter \\$root with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:multidimensional_isset\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:multidimensional_isset\\(\\) has parameter \\$root with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:multidimensional_replace\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:multidimensional_replace\\(\\) has parameter \\$root with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:reset_aggregated_multidimensionals\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:sanitize\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Setting\\:\\:sanitize\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Setting\\:\\:\\$aggregated_multidimensionals type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Setting\\:\\:\\$capability type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Setting\\:\\:\\$id_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:_sort_name_callback\\(\\) has parameter \\$widget_a with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:_sort_name_callback\\(\\) has parameter \\$widget_b with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:call_widget_update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:customize_controls_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:customize_dynamic_partial_args\\(\\) has parameter \\$partial_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:customize_dynamic_partial_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:customize_preview_enqueue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:customize_preview_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:end_dynamic_sidebar\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:enqueue_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:export_preview_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_customize_dynamic_setting_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_customize_dynamic_setting_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_customize_value_old_sidebars_widgets_data\\(\\) has parameter \\$old_sidebars_widgets with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_customize_value_old_sidebars_widgets_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_dynamic_sidebar_params\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_dynamic_sidebar_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_option_sidebars_widgets_for_theme_switch\\(\\) has parameter \\$sidebars_widgets with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_option_sidebars_widgets_for_theme_switch\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_sidebars_widgets_for_rendering_widget\\(\\) has parameter \\$sidebars_widgets with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_sidebars_widgets_for_rendering_widget\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_wp_kses_allowed_data_attributes\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:filter_wp_kses_allowed_data_attributes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:get_available_widgets\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:get_captured_options\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:get_selective_refreshable_widgets\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:get_setting_args\\(\\) has parameter \\$overrides with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:get_setting_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:get_widget_control\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:get_widget_control_parts\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:get_widget_control_parts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:output_widget_control_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:override_sidebars_widgets_for_theme_switch\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:parse_widget_id\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:parse_widget_setting_id\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:prepreview_added_sidebars_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:prepreview_added_widget_instance\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:preview_sidebars_widgets\\(\\) has parameter \\$sidebars_widgets with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:preview_sidebars_widgets\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:print_footer_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:print_preview_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:print_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:print_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:refresh_nonces\\(\\) has parameter \\$nonces with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:refresh_nonces\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:register_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:remove_prepreview_filters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:render_widget_partial\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:sanitize_sidebar_widgets_js_instance\\(\\) has parameter \\$widget_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:sanitize_sidebar_widgets_js_instance\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:sanitize_widget_instance\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:sanitize_widget_instance\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:sanitize_widget_js_instance\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:sanitize_widget_js_instance\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:schedule_customize_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:selective_refresh_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:setup_widget_addition_previews\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:start_capturing_option_updates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:start_dynamic_sidebar\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:stop_capturing_option_updates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:tally_rendered_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:tally_rendered_widgets\\(\\) has parameter \\$widget with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Widgets\\:\\:wp_ajax_update_widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$_captured_options type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$_is_capturing_option_updates has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$before_widget_tags_seen type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$core_widget_id_bases type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$current_dynamic_sidebar_id_stack type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$old_sidebars_widgets type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$rendered_sidebars type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$rendered_widgets type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$selective_refreshable_widgets type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$setting_id_patterns type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Widgets\\:\\:\\$sidebar_instance_count type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-customize-widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:__construct\\(\\) has parameter \\$date_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:build_mysql_datetime\\(\\) has parameter \\$datetime with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:build_value\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:get_compare\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:get_sql_for_clause\\(\\) has parameter \\$parent_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:get_sql_for_clause\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:get_sql_for_clause\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:get_sql_for_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:get_sql_for_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:get_sql_for_subquery\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:get_sql_for_subquery\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:is_first_order_clause\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:sanitize_query\\(\\) has parameter \\$parent_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:sanitize_query\\(\\) has parameter \\$queries with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:sanitize_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Date_Query\\:\\:validate_date_values\\(\\) has parameter \\$date_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Date_Query\\:\\:\\$queries type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-date-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Dependencies\\:\\:dequeue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Dependencies\\:\\:enqueue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Dependencies\\:\\:remove\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:add_editor_settings\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:add_editor_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_clamp_hsla\\(\\) has parameter \\$hsla with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_clamp_hsla\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_clamp_rgba\\(\\) has parameter \\$rgba with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_clamp_rgba\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_hsla_to_hsva\\(\\) has parameter \\$hsla with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_hsla_to_hsva\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_hsla_to_rgba\\(\\) has parameter \\$hsla with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_hsla_to_rgba\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_hsva_to_rgba\\(\\) has parameter \\$hsva with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_hsva_to_rgba\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_parse\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_parse_hex\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_parse_hsla_string\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:colord_parse_rgba_string\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:enqueue_block_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:enqueue_custom_filter\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:enqueue_custom_filter\\(\\) has parameter \\$filter_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:enqueue_global_styles_preset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:get_all_global_styles_presets\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:get_filter_css_property_value_from_preset\\(\\) has parameter \\$preset with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:get_filter_id_from_preset\\(\\) has parameter \\$preset with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:get_filter_svg\\(\\) has parameter \\$colors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:get_filter_svg_from_preset\\(\\) has parameter \\$preset with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:get_global_styles_presets\\(\\) has parameter \\$sources with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:get_svg_definitions\\(\\) has parameter \\$sources with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:is_preset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:migrate_experimental_duotone_support_flag\\(\\) has parameter \\$metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:migrate_experimental_duotone_support_flag\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:migrate_experimental_duotone_support_flag\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:output_block_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:output_footer_assets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:output_global_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:register_duotone_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Duotone\\:\\:render_duotone_support\\(\\) has parameter \\$block with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Duotone\\:\\:\\$block_css_declarations type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Duotone\\:\\:\\$global_styles_block_names type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Duotone\\:\\:\\$global_styles_presets type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Duotone\\:\\:\\$used_global_styles_presets type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Duotone\\:\\:\\$used_svg_filter_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-duotone.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:_parse_init\\(\\) has parameter \\$init with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:default_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:editor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:editor\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:editor_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:editor_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:editor_settings\\(\\) has parameter \\$set with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:enqueue_default_editor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:enqueue_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:force_uncompressed_tinymce\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:get_translation\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:parse_settings\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:parse_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:print_default_editor_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:print_tinymce_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:wp_fullscreen_html\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:wp_link_dialog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:wp_link_query\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method _WP_Editors\\:\\:wp_link_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$baseurl has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$drag_drop_upload has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$editor_buttons_css has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$ext_plugins has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$first_init has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$has_medialib has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$has_quicktags has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$has_tinymce has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$link_dialog_printed has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$mce_locale has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$mce_settings has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$plugins has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$qt_buttons has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$qt_settings has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$this_quicktags has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$this_tinymce has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$tinymce_scripts_printed has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property _WP_Editors\\:\\:\\$translation has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Embed\\:\\:autoembed_callback\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Embed\\:\\:cache_oembed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Embed\\:\\:delete_oembed_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Embed\\:\\:get_embed_handler_html\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Embed\\:\\:maybe_run_ajax_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Embed\\:\\:register_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Embed\\:\\:shortcode\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Embed\\:\\:unregister_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Embed\\:\\:\\$handlers has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Embed\\:\\:\\$last_attr has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Embed\\:\\:\\$last_url has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Embed\\:\\:\\$linkifunknown has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Embed\\:\\:\\$post_ID has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Embed\\:\\:\\$usecache has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Error\\:\\:add\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-error.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Error\\:\\:add_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-error.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Error\\:\\:copy_errors\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-error.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Error\\:\\:export_to\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-error.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Error\\:\\:get_error_codes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-error.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Error\\:\\:merge_from\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-error.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Error\\:\\:remove\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-error.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Error\\:\\:\\$additional_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-error.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Error\\:\\:\\$error_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-error.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Error\\:\\:\\$errors type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-error.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Fatal_Error_Handler\\:\\:detect_error\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-fatal-error-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Fatal_Error_Handler\\:\\:display_default_error_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-fatal-error-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Fatal_Error_Handler\\:\\:display_default_error_template\\(\\) has parameter \\$error with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-fatal-error-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Fatal_Error_Handler\\:\\:display_error_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-fatal-error-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Fatal_Error_Handler\\:\\:display_error_template\\(\\) has parameter \\$error with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-fatal-error-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Fatal_Error_Handler\\:\\:handle\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-fatal-error-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Fatal_Error_Handler\\:\\:should_handle_error\\(\\) has parameter \\$error with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-fatal-error-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Feed_Cache_Transient\\:\\:__construct\\(\\) has parameter \\$type with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-feed-cache-transient.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Feed_Cache_Transient\\:\\:load\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-feed-cache-transient.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Feed_Cache_Transient\\:\\:save\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-feed-cache-transient.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Class WP_Hook implements generic interface ArrayAccess but does not specify its types\\: TKey, TValue$#', + 'identifier' => 'missingType.generics', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Class WP_Hook implements generic interface Iterator but does not specify its types\\: TKey, TValue$#', + 'identifier' => 'missingType.generics', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:add_filter\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:apply_filters\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:build_preinitialized_hooks\\(\\) has parameter \\$filters with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:current\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:do_action\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:do_action\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:do_all_hook\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:do_all_hook\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:has_filter\\(\\) has parameter \\$callback with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:next\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:remove_all_filters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:remove_filter\\(\\) has parameter \\$callback with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Hook\\:\\:resort_active_iterations\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Hook\\:\\:\\$callbacks type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Hook\\:\\:\\$current_priority type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Hook\\:\\:\\$iterations type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Hook\\:\\:\\$priorities type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-hook.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http_Cookie\\:\\:__construct\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-cookie.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http_Cookie\\:\\:get_attributes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-cookie.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http_Curl\\:\\:request\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-curl.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http_Curl\\:\\:request\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-curl.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http_Curl\\:\\:test\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-curl.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http_Encoding\\:\\:accept_encoding\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-encoding.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http_Encoding\\:\\:should_decode\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-encoding.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTTP_Response\\:\\:__construct\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTTP_Response\\:\\:get_headers\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTTP_Response\\:\\:header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTTP_Response\\:\\:set_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTTP_Response\\:\\:set_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTTP_Response\\:\\:set_headers\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTTP_Response\\:\\:set_status\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_HTTP_Response\\:\\:\\$headers type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http_Streams\\:\\:request\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-streams.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http_Streams\\:\\:request\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-streams.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http_Streams\\:\\:test\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http-streams.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:_dispatch_request\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:_dispatch_request\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:_get_first_available_transport\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:browser_redirect_compatibility\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:browser_redirect_compatibility\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:browser_redirect_compatibility\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:browser_redirect_compatibility\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:buildCookieHeader\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:buildCookieHeader\\(\\) has parameter \\$r with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:get\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:get\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:handle_redirects\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:handle_redirects\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:handle_redirects\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:head\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:head\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:normalize_cookies\\(\\) has parameter \\$cookies with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:parse_url\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:post\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:post\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:processHeaders\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:processHeaders\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:processResponse\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:request\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:request\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Http\\:\\:validate_redirects\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Icons_Registry\\:\\:get_registered_icon\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-icons-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Icons_Registry\\:\\:get_registered_icons\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-icons-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Icons_Registry\\:\\:register\\(\\) has parameter \\$icon_properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-icons-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Icons_Registry\\:\\:\\$registered_icons type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-icons-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:_resize\\(\\) has parameter \\$crop with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:_save\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:make_image\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:make_subsize\\(\\) has parameter \\$size_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:make_subsize\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:multi_resize\\(\\) has parameter \\$sizes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:multi_resize\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:resize\\(\\) has parameter \\$crop with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:save\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:set_quality\\(\\) has parameter \\$dims with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_GD\\:\\:test\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-gd.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:_save\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:make_subsize\\(\\) has parameter \\$size_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:make_subsize\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:multi_resize\\(\\) has parameter \\$sizes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:multi_resize\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:remove_pdf_alpha_channel\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:resize\\(\\) has parameter \\$crop with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:save\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:set_quality\\(\\) has parameter \\$dims with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor_Imagick\\:\\:test\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor-imagick.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor\\:\\:get_output_format\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor\\:\\:make_image\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor\\:\\:multi_resize\\(\\) has parameter \\$sizes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor\\:\\:multi_resize\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor\\:\\:resize\\(\\) has parameter \\$crop with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor\\:\\:save\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor\\:\\:set_quality\\(\\) has parameter \\$dims with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Image_Editor\\:\\:test\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Image_Editor\\:\\:\\$default_mime_type has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Image_Editor\\:\\:\\$default_quality has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Image_Editor\\:\\:\\$file has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Image_Editor\\:\\:\\$mime_type has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Image_Editor\\:\\:\\$output_mime_type has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Image_Editor\\:\\:\\$quality has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Image_Editor\\:\\:\\$size has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-image-editor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Util\\:\\:__construct\\(\\) has parameter \\$input with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Util\\:\\:filter\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Util\\:\\:filter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Util\\:\\:get_input\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Util\\:\\:get_output\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Util\\:\\:pluck\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Util\\:\\:sort\\(\\) has parameter \\$orderby with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Util\\:\\:sort\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Util\\:\\:sort_callback\\(\\) has parameter \\$a with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_List_Util\\:\\:sort_callback\\(\\) has parameter \\$b with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_List_Util\\:\\:\\$input type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_List_Util\\:\\:\\$output type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-list-util.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Locale_Switcher\\:\\:change_locale\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-locale-switcher.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Locale_Switcher\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-locale-switcher.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Locale_Switcher\\:\\:load_translations\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-locale-switcher.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Locale_Switcher\\:\\:\\$stack type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-locale-switcher.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Locale\\:\\:_strings_for_pot\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-locale.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Locale\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-locale.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Locale\\:\\:register_globals\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-locale.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Locale\\:\\:\\$number_format type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-locale.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MatchesMapRegex\\:\\:__construct\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-matchesmapregex.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MatchesMapRegex\\:\\:apply\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-matchesmapregex.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_MatchesMapRegex\\:\\:callback\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-matchesmapregex.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_MatchesMapRegex\\:\\:\\$_matches type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-matchesmapregex.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:__construct\\(\\) has parameter \\$meta_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:find_compatible_table_alias\\(\\) has parameter \\$clause with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:find_compatible_table_alias\\(\\) has parameter \\$parent_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:get_clauses\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:get_sql_for_clause\\(\\) has parameter \\$clause with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:get_sql_for_clause\\(\\) has parameter \\$parent_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:get_sql_for_clause\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:get_sql_for_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:is_first_order_clause\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:parse_query_vars\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:parse_query_vars\\(\\) has parameter \\$qv with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:sanitize_query\\(\\) has parameter \\$queries with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Meta_Query\\:\\:sanitize_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Meta_Query\\:\\:\\$clauses type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Meta_Query\\:\\:\\$queries type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Meta_Query\\:\\:\\$table_aliases type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-meta-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Metadata_Lazyloader\\:\\:queue_objects\\(\\) has parameter \\$object_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-metadata-lazyloader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Metadata_Lazyloader\\:\\:\\$pending_objects type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-metadata-lazyloader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Metadata_Lazyloader\\:\\:\\$settings type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-metadata-lazyloader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Navigation_Fallback\\:\\:update_wp_navigation_post_schema\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-navigation-fallback.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Navigation_Fallback\\:\\:update_wp_navigation_post_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-navigation-fallback.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Network_Query\\:\\:__construct\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Network_Query\\:\\:get_network_ids\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Network_Query\\:\\:get_networks\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Network_Query\\:\\:parse_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Network_Query\\:\\:parse_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Network_Query\\:\\:query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Network_Query\\:\\:query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Network_Query\\:\\:set_found_networks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Network_Query\\:\\:\\$networks type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Network_Query\\:\\:\\$query_var_defaults type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Network_Query\\:\\:\\$query_vars type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Network_Query\\:\\:\\$sql_clauses type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Network\\:\\:_set_cookie_domain\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Network\\:\\:_set_site_name\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Object_Cache\\:\\:add_global_groups\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-object-cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Object_Cache\\:\\:add_multiple\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-object-cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Object_Cache\\:\\:delete_multiple\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-object-cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Object_Cache\\:\\:get_multiple\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-object-cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Object_Cache\\:\\:get_multiple\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-object-cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Object_Cache\\:\\:reset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-object-cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Object_Cache\\:\\:set_multiple\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-object-cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Object_Cache\\:\\:stats\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-object-cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Object_Cache\\:\\:switch_to_blog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-object-cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Object_Cache\\:\\:\\$cache type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-object-cache.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_oEmbed_Controller\\:\\:get_item\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_oEmbed_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_oEmbed\\:\\:__call\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_oEmbed\\:\\:_add_provider_early\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_oEmbed\\:\\:_remove_provider_early\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_oEmbed\\:\\:fetch\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_oEmbed\\:\\:get_data\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_oEmbed\\:\\:get_html\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_oEmbed\\:\\:get_provider\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_oEmbed\\:\\:\\$compat_methods type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_oEmbed\\:\\:\\$early_providers type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_oEmbed\\:\\:\\$providers type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-oembed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Paused_Extensions_Storage\\:\\:get\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-paused-extensions-storage.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Paused_Extensions_Storage\\:\\:get_all\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-paused-extensions-storage.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Paused_Extensions_Storage\\:\\:set\\(\\) has parameter \\$error with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-paused-extensions-storage.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:check_for_circular_dependencies\\(\\) has parameter \\$dependencies with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:check_for_circular_dependencies\\(\\) has parameter \\$dependents with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:check_for_circular_dependencies\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:check_plugin_dependencies_during_ajax\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:display_admin_notice_for_circular_dependencies\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:display_admin_notice_for_unmet_dependencies\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:get_circular_dependencies\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:get_dependencies\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:get_dependency_api_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:get_dependency_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:get_dependency_filepaths\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:get_dependency_names\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:get_dependent_names\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:get_dependents\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:get_plugin_dirnames\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:get_plugins\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:initialize\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:read_dependencies_from_plugin_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Plugin_Dependencies\\:\\:sanitize_dependency_slugs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Plugin_Dependencies\\:\\:\\$circular_dependencies_pairs type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Plugin_Dependencies\\:\\:\\$dependencies type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Plugin_Dependencies\\:\\:\\$dependency_api_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Plugin_Dependencies\\:\\:\\$dependency_slugs type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Plugin_Dependencies\\:\\:\\$dependent_slugs type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Plugin_Dependencies\\:\\:\\$plugin_dirnames type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Plugin_Dependencies\\:\\:\\$plugins type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-plugin-dependencies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:add_hooks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:add_rewrite_rules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:add_supports\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:register_meta_boxes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:register_taxonomies\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:remove_hooks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:remove_rewrite_rules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:remove_supports\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:reset_default_labels\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:set_props\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:set_props\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:unregister_meta_boxes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post_Type\\:\\:unregister_taxonomies\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post_Type\\:\\:\\$rewrite type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post_Type\\:\\:\\$supports type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Post_Type\\:\\:\\$template type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post-type.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Post\\:\\:to_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:__call\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:__construct\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:fill_query_vars\\(\\) has parameter \\$query_vars with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:fill_query_vars\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:generate_cache_key\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:generate_postdata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:init_query_flags\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:parse_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:parse_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:parse_query_vars\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:parse_search\\(\\) has parameter \\$query_vars with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:parse_search_order\\(\\) has parameter \\$query_vars with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:parse_tax_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:parse_tax_query\\(\\) has parameter \\$query_vars with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:reset_postdata\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:rewind_comments\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:rewind_posts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:set\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:set_404\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:set_found_posts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:set_found_posts\\(\\) has parameter \\$query_vars with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:the_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Query\\:\\:the_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Query\\:\\:\\$compat_fields has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Query\\:\\:\\$compat_methods has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Query\\:\\:\\$query type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Query\\:\\:\\$query_vars type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Query\\:\\:\\$stopwords type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Cookie_Service\\:\\:clear_cookie\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-cookie-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Cookie_Service\\:\\:parse_cookie\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-cookie-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Cookie_Service\\:\\:set_cookie\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-cookie-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Email_Service\\:\\:get_cause\\(\\) has parameter \\$extension with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-email-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Email_Service\\:\\:get_debug\\(\\) has parameter \\$extension with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-email-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Email_Service\\:\\:get_debug\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-email-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Email_Service\\:\\:get_plugin\\(\\) has parameter \\$extension with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-email-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Email_Service\\:\\:get_plugin\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-email-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Email_Service\\:\\:maybe_send_recovery_mode_email\\(\\) has parameter \\$error with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-email-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Email_Service\\:\\:maybe_send_recovery_mode_email\\(\\) has parameter \\$extension with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-email-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Email_Service\\:\\:send_recovery_mode_email\\(\\) has parameter \\$error with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-email-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Email_Service\\:\\:send_recovery_mode_email\\(\\) has parameter \\$extension with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-email-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Key_Service\\:\\:clean_expired_keys\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-key-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Key_Service\\:\\:get_keys\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-key-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Key_Service\\:\\:remove_key\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-key-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Key_Service\\:\\:update_keys\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-key-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode_Link_Service\\:\\:handle_begin_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode-link-service.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode\\:\\:clean_expired_keys\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode\\:\\:get_extension_for_error\\(\\) has parameter \\$error with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode\\:\\:get_extension_for_error\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode\\:\\:handle_cookie\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode\\:\\:handle_error\\(\\) has parameter \\$error with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode\\:\\:handle_exit_recovery_mode\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode\\:\\:initialize\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode\\:\\:is_network_plugin\\(\\) has parameter \\$extension with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode\\:\\:redirect_protected\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Recovery_Mode\\:\\:store_error\\(\\) has parameter \\$error with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-recovery-mode.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:add_endpoint\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:add_external_rule\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:add_permastruct\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:add_permastruct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:add_rewrite_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:add_rule\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:add_rule\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:flush_rules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:generate_rewrite_rule\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:page_uri_index\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:refresh_rewrite_rules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:remove_permastruct\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:remove_rewrite_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:set_category_base\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:set_permalink_structure\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Rewrite\\:\\:set_tag_base\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Rewrite\\:\\:\\$endpoints type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Rewrite\\:\\:\\$extra_permastructs type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Role\\:\\:add_cap\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-role.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Role\\:\\:remove_cap\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-role.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Roles\\:\\:__call\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-roles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Roles\\:\\:_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-roles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Roles\\:\\:add_cap\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-roles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Roles\\:\\:for_site\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-roles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Roles\\:\\:get_roles_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-roles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Roles\\:\\:init_roles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-roles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Roles\\:\\:reinit\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-roles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Roles\\:\\:remove_cap\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-roles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Roles\\:\\:remove_role\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-roles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Roles\\:\\:\\$roles type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-roles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:add_hooks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:dequeue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:deregister\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:enqueue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:print_a11y_script_module_html\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:print_enqueued_script_modules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:print_head_enqueued_script_modules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:print_import_map\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:print_script_module\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:print_script_module_preloads\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Script_Modules\\:\\:register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Scripts\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-scripts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Scripts\\:\\:reset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-scripts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:destroy\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:destroy_all\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:destroy_all_for_all_users\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:destroy_all_sessions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:destroy_other_sessions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:destroy_others\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:drop_sessions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:get\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:get_all\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:get_session\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:get_sessions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:is_still_valid\\(\\) has parameter \\$session with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:update\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:update\\(\\) has parameter \\$session with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:update_session\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Session_Tokens\\:\\:update_session\\(\\) has parameter \\$session with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Query\\:\\:__construct\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Query\\:\\:get_site_ids\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Query\\:\\:parse_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Query\\:\\:parse_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Query\\:\\:query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site_Query\\:\\:set_found_sites\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Query\\:\\:\\$meta_query_clauses type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Query\\:\\:\\$query_var_defaults type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Query\\:\\:\\$query_vars type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Query\\:\\:\\$sites type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Site_Query\\:\\:\\$sql_clauses type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Site\\:\\:to_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Styles\\:\\:reset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-styles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:__construct\\(\\) has parameter \\$tax_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:clean_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:clean_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:find_compatible_table_alias\\(\\) has parameter \\$clause with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:find_compatible_table_alias\\(\\) has parameter \\$parent_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:get_sql_for_clause\\(\\) has parameter \\$clause with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:get_sql_for_clause\\(\\) has parameter \\$parent_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:get_sql_for_clause\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:get_sql_for_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:is_first_order_clause\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:sanitize_query\\(\\) has parameter \\$queries with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:sanitize_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:transform_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Tax_Query\\:\\:transform_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Tax_Query\\:\\:\\$queried_terms type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Tax_Query\\:\\:\\$queries type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Tax_Query\\:\\:\\$table_aliases type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-tax-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Taxonomy\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Taxonomy\\:\\:__construct\\(\\) has parameter \\$object_type with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Taxonomy\\:\\:add_hooks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Taxonomy\\:\\:add_rewrite_rules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Taxonomy\\:\\:remove_hooks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Taxonomy\\:\\:remove_rewrite_rules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Taxonomy\\:\\:reset_default_labels\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Taxonomy\\:\\:set_props\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Taxonomy\\:\\:set_props\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Taxonomy\\:\\:\\$args type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Taxonomy\\:\\:\\$default_term type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Taxonomy\\:\\:\\$rewrite type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Term_Query\\:\\:__construct\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Term_Query\\:\\:generate_cache_key\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Term_Query\\:\\:parse_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Term_Query\\:\\:parse_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Term_Query\\:\\:query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Term_Query\\:\\:\\$meta_query_clauses type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Term_Query\\:\\:\\$query_var_defaults type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Term_Query\\:\\:\\$query_vars type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Term_Query\\:\\:\\$sql_clauses type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Term_Query\\:\\:\\$terms type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Term\\:\\:filter\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Term\\:\\:to_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-term.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Textdomain_Registry\\:\\:get_language_files_from_path\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-textdomain-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Textdomain_Registry\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-textdomain-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Textdomain_Registry\\:\\:invalidate_mo_files_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-textdomain-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Textdomain_Registry\\:\\:invalidate_mo_files_cache\\(\\) has parameter \\$hook_extra with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-textdomain-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Textdomain_Registry\\:\\:set\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-textdomain-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Textdomain_Registry\\:\\:set_custom_path\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-textdomain-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Textdomain_Registry\\:\\:\\$all type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-textdomain-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Textdomain_Registry\\:\\:\\$cached_mo_files type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-textdomain-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Textdomain_Registry\\:\\:\\$current type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-textdomain-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Textdomain_Registry\\:\\:\\$custom_paths type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-textdomain-registry.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Data\\:\\:__construct\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Data\\:\\:get_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Data\\:\\:update_with\\(\\) has parameter \\$new_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-data.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:clean_cached_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:get_fields_to_translate\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:get_resolved_theme_uris\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:get_style_variations\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:get_theme_data\\(\\) has parameter \\$deprecated with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:get_theme_data\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:get_user_data_from_wp_global_styles\\(\\) has parameter \\$post_status_filter with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:get_user_data_from_wp_global_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:inject_variations_from_block_style_variation_files\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:inject_variations_from_block_style_variation_files\\(\\) has parameter \\$variations with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:inject_variations_from_block_style_variation_files\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:inject_variations_from_block_styles_registry\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:inject_variations_from_block_styles_registry\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:read_json_file\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:recursively_iterate_json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:remove_json_comments\\(\\) has parameter \\$input_array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:remove_json_comments\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:style_variation_has_scope\\(\\) has parameter \\$variation with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:translate\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Resolver\\:\\:translate\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Theme_JSON_Resolver\\:\\:\\$blocks_cache type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Theme_JSON_Resolver\\:\\:\\$i18n_schema type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Theme_JSON_Resolver\\:\\:\\$theme_json_file_cache type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:migrate\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:migrate\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:migrate_v1_to_v2\\(\\) has parameter \\$old with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:migrate_v1_to_v2\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:migrate_v2_to_v3\\(\\) has parameter \\$old with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:migrate_v2_to_v3\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:rename_paths\\(\\) has parameter \\$paths_to_rename with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:rename_paths\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:rename_paths\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:rename_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:rename_settings\\(\\) has parameter \\$paths_to_rename with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:rename_settings\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:unset_setting_by_path\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:unset_setting_by_path\\(\\) has parameter \\$path with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON_Schema\\:\\:unset_setting_by_path\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json-schema.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Theme_JSON\\:\\:APPEARANCE_TOOLS_OPT_INS type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Theme_JSON\\:\\:FONT_FAMILY_SCHEMA type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Theme_JSON\\:\\:INDIRECT_PROPERTIES_METADATA type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Theme_JSON\\:\\:PRESETS_METADATA type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Theme_JSON\\:\\:PROPERTIES_METADATA type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Theme_JSON\\:\\:PROTECTED_PROPERTIES type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Theme_JSON\\:\\:VALID_BLOCK_PSEUDO_SELECTORS type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Theme_JSON\\:\\:VALID_ELEMENT_PSEUDO_SELECTORS type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Theme_JSON\\:\\:VALID_SETTINGS type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Theme_JSON\\:\\:VALID_STYLES type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:__construct\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_preset_classes\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_preset_vars\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_preset_vars\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_spacing_sizes\\(\\) has parameter \\$spacing_scale with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_spacing_sizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_style_properties\\(\\) has parameter \\$properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_style_properties\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_style_properties\\(\\) has parameter \\$styles with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_style_properties\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_style_properties\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_theme_vars\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:compute_theme_vars\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:convert_variables_to_value\\(\\) has parameter \\$styles with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:convert_variables_to_value\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:convert_variables_to_value\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:do_opt_in_into_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:do_opt_in_into_settings\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:filter_slugs\\(\\) has parameter \\$node with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:filter_slugs\\(\\) has parameter \\$slugs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:filter_slugs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:flatten_tree\\(\\) has parameter \\$tree with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:flatten_tree\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_block_classes\\(\\) has parameter \\$style_nodes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_block_element_selectors\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_block_nodes\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_block_nodes\\(\\) has parameter \\$selectors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_block_nodes\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_block_nodes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_block_selectors\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_blocks_metadata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_css_variables\\(\\) has parameter \\$nodes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_custom_templates\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_default_slugs\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_default_slugs\\(\\) has parameter \\$node_path with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_default_slugs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_feature_declarations_for_node\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_from_editor_settings\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_from_editor_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_layout_styles\\(\\) has parameter \\$block_metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_layout_styles\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_metadata_boolean\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_metadata_boolean\\(\\) has parameter \\$path with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_name_from_defaults\\(\\) has parameter \\$base_path with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_preset_classes\\(\\) has parameter \\$setting_nodes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_property_value\\(\\) has parameter \\$path with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_property_value\\(\\) has parameter \\$styles with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_property_value\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_property_value\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_raw_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_root_layout_rules\\(\\) has parameter \\$block_metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_root_layout_rules\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_setting_nodes\\(\\) has parameter \\$selectors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_setting_nodes\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_setting_nodes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_settings_slugs\\(\\) has parameter \\$preset_metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_settings_slugs\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_settings_slugs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_settings_values_by_slug\\(\\) has parameter \\$preset_metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_settings_values_by_slug\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_settings_values_by_slug\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_style_nodes\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_style_nodes\\(\\) has parameter \\$selectors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_style_nodes\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_style_nodes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_styles_block_nodes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_styles_for_block\\(\\) has parameter \\$block_metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_stylesheet\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_svg_filters\\(\\) has parameter \\$origins with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_template_parts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_valid_block_style_variations\\(\\) has parameter \\$blocks_metadata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:get_valid_block_style_variations\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:maybe_opt_in_into_settings\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:maybe_opt_in_into_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:merge\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:merge_spacing_sizes\\(\\) has parameter \\$base with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:merge_spacing_sizes\\(\\) has parameter \\$incoming with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:merge_spacing_sizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:preserve_valid_typed_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:preserve_valid_typed_settings\\(\\) has parameter \\$input with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:preserve_valid_typed_settings\\(\\) has parameter \\$output with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:preserve_valid_typed_settings\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:process_pseudo_selectors\\(\\) has parameter \\$node with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:process_pseudo_selectors\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:process_pseudo_selectors\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_indirect_properties\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_indirect_properties\\(\\) has parameter \\$input with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_indirect_properties\\(\\) has parameter \\$output with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_insecure_element_styles\\(\\) has parameter \\$elements with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_insecure_element_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_insecure_inner_block_styles\\(\\) has parameter \\$blocks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_insecure_inner_block_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_insecure_properties\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_insecure_properties\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_insecure_settings\\(\\) has parameter \\$input with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_insecure_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_insecure_styles\\(\\) has parameter \\$input with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_insecure_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_keys_not_in_schema\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_keys_not_in_schema\\(\\) has parameter \\$tree with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:remove_keys_not_in_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:resolve_custom_css_format\\(\\) has parameter \\$tree with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:resolve_custom_css_format\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:sanitize\\(\\) has parameter \\$input with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:sanitize\\(\\) has parameter \\$valid_block_names with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:sanitize\\(\\) has parameter \\$valid_element_names with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:sanitize\\(\\) has parameter \\$valid_variations with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:sanitize\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:schema_in_root_and_per_origin\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:schema_in_root_and_per_origin\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:scope_style_node_selectors\\(\\) has parameter \\$node with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:scope_style_node_selectors\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:should_override_preset\\(\\) has parameter \\$override with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:should_override_preset\\(\\) has parameter \\$path with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:should_override_preset\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:to_ruleset\\(\\) has parameter \\$declarations with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:unwrap_shared_block_style_variations\\(\\) has parameter \\$theme_json with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:unwrap_shared_block_style_variations\\(\\) has parameter \\$valid_variations with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:unwrap_shared_block_style_variations\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:update_paragraph_text_indent_selector\\(\\) has parameter \\$feature_declarations with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:update_paragraph_text_indent_selector\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:update_paragraph_text_indent_selector\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:update_separator_declarations\\(\\) has parameter \\$declarations with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme_JSON\\:\\:update_separator_declarations\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Theme_JSON\\:\\:\\$blocks_metadata type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Theme_JSON\\:\\:\\$theme_json type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme-json.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Class WP_Theme implements generic interface ArrayAccess but does not specify its types\\: TKey, TValue$#', + 'identifier' => 'missingType.generics', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:_check_headers_property_has_correct_type\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:_check_headers_property_has_correct_type\\(\\) has parameter \\$headers with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:cache_add\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:cache_delete\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:delete_pattern_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:display\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:get_block_patterns\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:get_pattern_cache\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:get_post_templates\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:markup_header\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:network_disable_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:network_enable_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:sanitize_header\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:scandir\\(\\) has parameter \\$extensions with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:set_pattern_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:set_pattern_cache\\(\\) has parameter \\$patterns with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:sort_by_name\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:translate_header\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Theme\\:\\:translate_header\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Theme\\:\\:\\$headers type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Theme\\:\\:\\$headers_sanitized type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Token_Map\\:\\:from_array\\(\\) has parameter \\$mappings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-token-map.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Token_Map\\:\\:from_precomputed_table\\(\\) has parameter \\$state with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-token-map.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Token_Map\\:\\:to_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-token-map.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Token_Map\\:\\:\\$large_words type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-token-map.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Meta_Session_Tokens\\:\\:destroy_all_sessions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-meta-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Meta_Session_Tokens\\:\\:destroy_other_sessions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-meta-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Meta_Session_Tokens\\:\\:drop_sessions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-meta-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Meta_Session_Tokens\\:\\:get_session\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-meta-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Meta_Session_Tokens\\:\\:get_sessions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-meta-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Meta_Session_Tokens\\:\\:prepare_session\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-meta-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Meta_Session_Tokens\\:\\:update_session\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-meta-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Meta_Session_Tokens\\:\\:update_session\\(\\) has parameter \\$session with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-meta-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Meta_Session_Tokens\\:\\:update_sessions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-meta-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Meta_Session_Tokens\\:\\:update_sessions\\(\\) has parameter \\$sessions with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-meta-session-tokens.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Query\\:\\:__call\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Query\\:\\:__construct\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Query\\:\\:fill_query_vars\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Query\\:\\:fill_query_vars\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Query\\:\\:generate_cache_key\\(\\) has parameter \\$deprecated with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Query\\:\\:get_cache_last_changed\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Query\\:\\:get_results\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Query\\:\\:prepare_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Query\\:\\:prepare_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Query\\:\\:query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User_Query\\:\\:set\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User_Query\\:\\:\\$compat_fields has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User_Query\\:\\:\\$query_fields has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User_Query\\:\\:\\$query_from has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User_Query\\:\\:\\$query_limit has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User_Query\\:\\:\\$query_orderby has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User_Query\\:\\:\\$query_vars type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User_Query\\:\\:\\$query_where has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User_Query\\:\\:\\$results type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User_Request\\:\\:\\$request_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:__call\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:_init_caps\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:add_cap\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:add_role\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:for_blog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:for_site\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:remove_all_caps\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:remove_cap\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:remove_role\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:set_role\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:to_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_User\\:\\:update_user_level_from_caps\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_User\\:\\:\\$back_compat_keys type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:display_element\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:display_element\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:display_element\\(\\) has parameter \\$children_elements with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:end_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:end_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:end_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:end_lvl\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:get_number_of_root_elements\\(\\) has parameter \\$elements with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:paged_walk\\(\\) has parameter \\$elements with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:start_el\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:start_el\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:start_lvl\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:start_lvl\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:unset_children\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:unset_children\\(\\) has parameter \\$children_elements with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method Walker\\:\\:walk\\(\\) has parameter \\$elements with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-walker.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Factory\\:\\:WP_Widget_Factory\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget-factory.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Factory\\:\\:_register_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget-factory.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Factory\\:\\:register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget-factory.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Factory\\:\\:unregister\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget-factory.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Widget_Factory\\:\\:\\$widgets type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget-factory.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:WP_Widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:WP_Widget\\(\\) has parameter \\$control_options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:WP_Widget\\(\\) has parameter \\$widget_options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:__construct\\(\\) has parameter \\$control_options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:__construct\\(\\) has parameter \\$widget_options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:_register\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:_register_one\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:_set\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:display_callback\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:display_callback\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:display_callback\\(\\) has parameter \\$widget_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:form_callback\\(\\) has parameter \\$widget_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:get_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:save_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:save_settings\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:update_callback\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Widget\\:\\:\\$control_options type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Widget\\:\\:\\$widget_options type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:__call\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:__call\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_getOptions\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_getOptions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_insert_post\\(\\) has parameter \\$content_struct with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_multisite_getUsersBlogs\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_multisite_getUsersBlogs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_comment\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_media_item\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_page\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_post\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_post\\(\\) has parameter \\$post with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_post\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_post_type\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_post_type\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_taxonomy\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_taxonomy\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_term\\(\\) has parameter \\$term with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_term\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_user\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_prepare_user\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:_toggle_sticky\\(\\) has parameter \\$post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:add_enclosure_if_new\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:add_enclosure_if_new\\(\\) has parameter \\$enclosure with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:attach_uploads\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_deletePost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_editPost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_getPost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_getPost\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_getRecentPosts\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_getRecentPosts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_getTemplate\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_getUserInfo\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_getUserInfo\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_getUsersBlogs\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_getUsersBlogs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_newPost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:blogger_setTemplate\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:error\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:escape\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:get_custom_fields\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:get_term_custom_fields\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:initialise_blog_option_info\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:minimum_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mt_getCategoryList\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mt_getCategoryList\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mt_getPostCategories\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mt_getPostCategories\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mt_getRecentPostTitles\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mt_getRecentPostTitles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mt_getTrackbackPings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mt_publishPost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mt_setPostCategories\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mt_supportedMethods\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mt_supportedTextFilters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mw_editPost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mw_getCategories\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mw_getCategories\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mw_getPost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mw_getPost\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mw_getRecentPosts\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mw_getRecentPosts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mw_newMediaObject\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mw_newMediaObject\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:mw_newPost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:pingback_extensions_getPingbacks\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:pingback_ping\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:serve_request\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:set_custom_fields\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:set_custom_fields\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:set_is_enabled\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:set_term_custom_fields\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:set_term_custom_fields\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_deleteCategory\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_deleteComment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_deletePage\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_deletePost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_deleteTerm\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_editComment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_editPage\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_editPage\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_editPost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_editProfile\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_editTerm\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getAuthors\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getAuthors\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getComment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getComment\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getCommentCount\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getCommentCount\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getCommentStatusList\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getCommentStatusList\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getComments\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getComments\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getMediaItem\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getMediaItem\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getMediaLibrary\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getMediaLibrary\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getOptions\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getOptions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPage\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPage\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPageList\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPageList\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPageStatusList\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPageStatusList\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPageTemplates\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPageTemplates\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPages\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPages\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPost\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPostFormats\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPostFormats\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPostStatusList\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPostStatusList\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPostType\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPostType\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPostTypes\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPostTypes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPosts\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getPosts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getProfile\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getProfile\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getRevisions\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getRevisions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getTags\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getTags\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getTaxonomies\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getTaxonomies\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getTaxonomy\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getTaxonomy\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getTerm\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getTerm\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getTerms\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getTerms\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getUser\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getUser\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getUsers\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getUsers\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getUsersBlogs\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_getUsersBlogs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_newCategory\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_newComment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_newPage\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_newPost\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_newTerm\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_restoreRevision\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_setOptions\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_setOptions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_suggestCategories\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wp_xmlrpc_server\\:\\:wp_suggestCategories\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property wp_xmlrpc_server\\:\\:\\$blog_options type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property wp_xmlrpc_server\\:\\:\\$methods type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp-xmlrpc-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:add_query_var\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:build_query_string\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:handle_404\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:main\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:main\\(\\) has parameter \\$query_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:parse_request\\(\\) has parameter \\$extra_query_vars with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:query_posts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:register_globals\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:remove_query_var\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:send_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP\\:\\:set_query_var\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP\\:\\:\\$extra_query_vars type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP\\:\\:\\$query_vars type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wp.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:_do_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:_escape\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:_escape\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:_insert_replace_helper\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:delete\\(\\) has parameter \\$where with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:determine_charset\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:escape\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:escape\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:escape_by_ref\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:flush\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:get_col\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:get_col_length\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:get_results\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:get_row\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:init_charset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:insert\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:load_col_info\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:log_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:log_query\\(\\) has parameter \\$query_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:parse_db_host\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:process_field_charsets\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:process_field_charsets\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:process_field_formats\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:process_field_formats\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:process_field_lengths\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:process_field_lengths\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:process_fields\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:process_fields\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:replace\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:select\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:set_charset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:set_sql_mode\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:set_sql_mode\\(\\) has parameter \\$modes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:strip_invalid_text\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:strip_invalid_text\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:update\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method wpdb\\:\\:update\\(\\) has parameter \\$where with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property wpdb\\:\\:\\$col_info type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property wpdb\\:\\:\\$col_meta type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property wpdb\\:\\:\\$field_types type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property wpdb\\:\\:\\$queries type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/class-wpdb.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_collaboration_inject_setting\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/collaboration.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function cancel_comment_reply_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_ID\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_author\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_author_IP\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_author_email\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_author_email_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_author_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_author_url\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_author_url_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_date\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_excerpt\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_form\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_form_title\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_id_fields\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_reply_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_reply_link\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_text\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_text\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_time\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_type\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comments_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comments_number\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comments_popup_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comments_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_comment_link\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_comment_reply_link\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_comment_text\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_post_reply_link\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_reply_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_reply_link\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function trackback_rdf\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_comment_form_unfiltered_html_nonce\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_comments\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _clear_modified_cache_on_transition_comment_status\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _prime_comment_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_batch_update_comment_type\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_check_for_scheduled_update_comment_type\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function check_comment_flood_db\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_comment_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_comment_cache\\(\\) has parameter \\$ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_all_enclosures\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_all_pingbacks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_all_pings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_all_trackbacks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_approved_comments\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_comment\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_comments\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_page_of_comment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function sanitize_comment_cookies\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_comment_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function weblog_ping\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_allow_comment\\(\\) has parameter \\$commentdata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_set_comments_last_changed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_comment_data\\(\\) has parameter \\$comment_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_comment_data_max_lengths\\(\\) has parameter \\$comment_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_comments_personal_data_eraser\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_comments_personal_data_exporter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_create_initial_comment_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_filter_comment\\(\\) has parameter \\$commentdata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_filter_comment\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_current_commenter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_handle_comment_submission\\(\\) has parameter \\$comment_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_insert_comment\\(\\) has parameter \\$commentdata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_lazyload_comment_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_lazyload_comment_meta\\(\\) has parameter \\$comment_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_new_comment\\(\\) has parameter \\$commentdata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_new_comment_via_rest_notify_postauthor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_comment_personal_data_eraser\\(\\) has parameter \\$erasers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_comment_personal_data_eraser\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_comment_personal_data_exporter\\(\\) has parameter \\$exporters with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_comment_personal_data_exporter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_comment_cookies\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_transition_comment_status\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_comment\\(\\) has parameter \\$commentarr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/comment.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_can_use_pcre_u\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function array_all\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function array_any\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function array_find\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function array_find_key\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function array_first\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function array_last\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function utf8_decode\\(\\) has parameter \\$utf8_text with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function utf8_encode\\(\\) has parameter \\$iso_8859_1_text with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/compat.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_cron_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _set_cron_array\\(\\) has parameter \\$cron with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _upgrade_cron_array\\(\\) has parameter \\$cron with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _upgrade_cron_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_clear_scheduled_hook\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_ready_cron_jobs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_schedule\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_scheduled_event\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_schedules\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_next_scheduled\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_reschedule_event\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_schedule_event\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_schedule_single_event\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_unschedule_event\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/cron.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Background_Image_Control\\:\\:enqueue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-background-image-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Background_Position_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-background-position-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Background_Position_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-background-position-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Code_Editor_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-code-editor-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Code_Editor_Control\\:\\:enqueue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-code-editor-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Code_Editor_Control\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-code-editor-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Code_Editor_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-code-editor-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Code_Editor_Control\\:\\:\\$editor_settings type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-code-editor-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Color_Control\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-color-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Color_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-color-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Color_Control\\:\\:enqueue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-color-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Color_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-color-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Color_Control\\:\\:to_json\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-color-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Color_Control\\:\\:\\$statuses type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-color-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Cropped_Image_Control\\:\\:enqueue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-cropped-image-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Cropped_Image_Control\\:\\:to_json\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-cropped-image-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Custom_CSS_Setting\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-custom-css-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Date_Time_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-date-time-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Date_Time_Control\\:\\:get_month_choices\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-date-time-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Date_Time_Control\\:\\:get_timezone_info\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-date-time-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Date_Time_Control\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-date-time-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Date_Time_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-date-time-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Header_Image_Control\\:\\:enqueue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-header-image-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Header_Image_Control\\:\\:prepare_control\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-header-image-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Header_Image_Control\\:\\:print_header_image_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-header-image-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Header_Image_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-header-image-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Image_Control\\:\\:add_tab\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-image-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Image_Control\\:\\:prepare_control\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-image-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Image_Control\\:\\:print_tab_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-image-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Image_Control\\:\\:remove_tab\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-image-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Media_Control\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-media-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Media_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-media-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Media_Control\\:\\:enqueue\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-media-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Media_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-media-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Media_Control\\:\\:to_json\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-media-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Media_Control\\:\\:\\$button_labels type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-media-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Auto_Add_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Auto_Add_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Control\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Control\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Control\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:amend_customize_save_response\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:amend_customize_save_response\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:filter_wp_get_nav_menu_items\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:flush_cached_value\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:js_value\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:populate_value\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:sanitize\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:sanitize\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:sort_wp_get_nav_menu_items\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:update\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Item_Setting\\:\\:value\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Nav_Menu_Item_Setting\\:\\:\\$default type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Nav_Menu_Item_Setting\\:\\:\\$value type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Location_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-location-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Location_Control\\:\\:to_json\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-location-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Locations_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Locations_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Name_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-name-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Name_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-name-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Section\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:amend_customize_save_response\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:amend_customize_save_response\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:filter_nav_menu_options\\(\\) has parameter \\$nav_menu_options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:filter_nav_menu_options\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:filter_nav_menu_options_value\\(\\) has parameter \\$nav_menu_options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:filter_nav_menu_options_value\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:filter_wp_get_nav_menus\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:sanitize\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:sanitize\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:update\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menu_Setting\\:\\:value\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Nav_Menu_Setting\\:\\:\\$_widget_nav_menu_updates type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Nav_Menu_Setting\\:\\:\\$default type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menu-setting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus_Panel\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menus-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus_Panel\\:\\:render_screen_options\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menus-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Nav_Menus_Panel\\:\\:wp_nav_menu_manage_columns\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-nav-menus-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_New_Menu_Control\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-new-menu-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_New_Menu_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-new-menu-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_New_Menu_Section\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-new-menu-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_New_Menu_Section\\:\\:render\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-new-menu-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Partial\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-partial.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Partial\\:\\:id_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-partial.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Partial\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-partial.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Partial\\:\\:render\\(\\) has parameter \\$container_context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-partial.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Partial\\:\\:render\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-partial.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Partial\\:\\:render_callback\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-partial.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Partial\\:\\:render_callback\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-partial.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Partial\\:\\:\\$id_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-partial.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Selective_Refresh\\:\\:add_partial\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-selective-refresh.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Selective_Refresh\\:\\:enqueue_preview_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-selective-refresh.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Selective_Refresh\\:\\:export_preview_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-selective-refresh.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Selective_Refresh\\:\\:handle_render_partials_request\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-selective-refresh.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Selective_Refresh\\:\\:init_preview\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-selective-refresh.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Selective_Refresh\\:\\:partials\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-selective-refresh.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Selective_Refresh\\:\\:remove_partial\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-selective-refresh.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Selective_Refresh\\:\\:\\$triggered_errors type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-selective-refresh.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Sidebar_Section\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-sidebar-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Site_Icon_Control\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-site-icon-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Site_Icon_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-site-icon-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Theme_Control\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-theme-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Theme_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-theme-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Theme_Control\\:\\:to_json\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-theme-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Themes_Panel\\:\\:content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-themes-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Themes_Panel\\:\\:render_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-themes-panel.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Themes_Section\\:\\:filter_bar_content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-themes-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Themes_Section\\:\\:filter_drawer_content_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-themes-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Themes_Section\\:\\:json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-themes-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Themes_Section\\:\\:render_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-themes-section.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Customize_Upload_Control\\:\\:to_json\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-upload-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Upload_Control\\:\\:\\$button_labels type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-upload-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Upload_Control\\:\\:\\$context has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-upload-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Upload_Control\\:\\:\\$extensions has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-upload-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Customize_Upload_Control\\:\\:\\$removed has no type specified\\.$#', + 'identifier' => 'missingType.property', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-customize-upload-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sidebar_Block_Editor_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-sidebar-block-editor-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Area_Customize_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-widget-area-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Area_Customize_Control\\:\\:to_json\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-widget-area-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Form_Customize_Control\\:\\:render_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-widget-form-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Form_Customize_Control\\:\\:to_json\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/customize/class-wp-widget-form-customize-control.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cookie_constants\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/default-constants.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_functionality_constants\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/default-constants.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_initial_constants\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/default-constants.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_plugin_directory_constants\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/default-constants.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ssl_constants\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/default-constants.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_templating_constants\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/default-constants.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _oembed_create_xml\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function enqueue_embed_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_oembed_response_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_oembed_response_data_for_url\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_oembed_response_data_rich\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_oembed_response_data_rich\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function print_embed_comments_button\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function print_embed_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function print_embed_sharing_button\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function print_embed_sharing_dialog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_embed_site_title\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_excerpt_embed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_embed_handler_audio\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_embed_handler_audio\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_embed_handler_audio\\(\\) has parameter \\$rawattr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_embed_handler_video\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_embed_handler_video\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_embed_handler_video\\(\\) has parameter \\$rawattr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_embed_handler_youtube\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_embed_handler_youtube\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_embed_handler_youtube\\(\\) has parameter \\$rawattr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_embed_register_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_embed_unregister_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_embed_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_filter_pre_oembed_result\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_load_embeds\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_oembed_add_discovery_links\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_oembed_add_host_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_oembed_add_provider\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_oembed_get\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_oembed_register_route\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/embed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_extension_error_description\\(\\) has parameter \\$error with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/error-protection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_fatal_error_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/error-protection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function atom_enclosure\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function atom_site_icon\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function bloginfo_rss\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_author_rss\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_guid\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comment_text_rss\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function comments_link_feed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function html_type_rss\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function prep_atom_text_construct\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rss2_site_icon\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rss_enclosure\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function self_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_category_rss\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_content_feed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_excerpt_rss\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_permalink_rss\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_title_rss\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_title_rss\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/feed.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_after_delete_font_family\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_before_delete_font_face\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_register_default_font_collections\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_font_dir\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_font_dir\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_font_faces\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_font_faces\\(\\) has parameter \\$fonts with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_font_faces_from_style_variations\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_font_collection\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Collection\\:\\:__construct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-collection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Collection\\:\\:get_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-collection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Collection\\:\\:get_sanitization_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-collection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Collection\\:\\:load_from_file\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-collection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Collection\\:\\:load_from_json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-collection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Collection\\:\\:load_from_url\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-collection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Collection\\:\\:sanitize_and_validate_data\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-collection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Collection\\:\\:sanitize_and_validate_data\\(\\) has parameter \\$required_properties with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-collection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Collection\\:\\:sanitize_and_validate_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-collection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Font_Collection\\:\\:\\$data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-collection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face_Resolver\\:\\:convert_font_face_properties\\(\\) has parameter \\$font_face_definition with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face_Resolver\\:\\:convert_font_face_properties\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face_Resolver\\:\\:get_fonts_from_style_variations\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face_Resolver\\:\\:get_fonts_from_theme_json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face_Resolver\\:\\:parse_settings\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face_Resolver\\:\\:parse_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face_Resolver\\:\\:to_kebab_case\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face_Resolver\\:\\:to_kebab_case\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face_Resolver\\:\\:to_theme_file_uri\\(\\) has parameter \\$src with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face_Resolver\\:\\:to_theme_file_uri\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face-resolver.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:build_font_face_css\\(\\) has parameter \\$font_face with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:compile_src\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:compile_variations\\(\\) has parameter \\$font_variation_settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:generate_and_print\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:generate_and_print\\(\\) has parameter \\$fonts with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:get_css\\(\\) has parameter \\$font_faces with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:order_src\\(\\) has parameter \\$font_face with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:order_src\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:validate_font_face_declarations\\(\\) has parameter \\$font_face with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:validate_font_face_declarations\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:validate_fonts\\(\\) has parameter \\$fonts with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Face\\:\\:validate_fonts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-face.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Library\\:\\:get_font_collections\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-library.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Library\\:\\:register_font_collection\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-library.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Font_Library\\:\\:\\$collections type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-library.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Utils\\:\\:get_font_face_slug\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Utils\\:\\:sanitize_from_schema\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Utils\\:\\:sanitize_from_schema\\(\\) has parameter \\$tree with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Font_Utils\\:\\:sanitize_from_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/fonts/class-wp-font-utils.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _autop_newline_preservation_helper\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _deep_replace\\(\\) has parameter \\$search with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _make_email_clickable_cb\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _make_url_clickable_cb\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _make_web_ftp_clickable_cb\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _print_emoji_detection_script\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _split_str_by_whitespace\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_emoji_list\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_iso_convert\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wptexturize_pushpop_element\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function esc_sql\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function esc_sql\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function print_emoji_detection_script\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function translate_smiley\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_emoji_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_init_targeted_link_rel_filters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_parse_str\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_parse_str\\(\\) has parameter \\$result with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_pre_kses_block_attributes\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_rel_callback\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_rel_nofollow_callback\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remove_targeted_link_rel_filters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_replace_in_html_tags\\(\\) has parameter \\$replace_pairs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_slash\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_slash\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_sprintf_l\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_staticize_emoji_for_email\\(\\) has parameter \\$mail with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_staticize_emoji_for_email\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_targeted_link_rel_callback\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_unslash\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_unslash\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/formatting.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function __return_empty_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _ajax_wp_die_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _ajax_wp_die_handler\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _default_wp_die_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _default_wp_die_handler\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _delete_option_fresh_site\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _deprecated_argument\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _deprecated_class\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _deprecated_constructor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _deprecated_file\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _deprecated_function\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _deprecated_hook\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _doing_it_wrong\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _http_build_query\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _json_wp_die_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _json_wp_die_handler\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _jsonp_wp_die_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _jsonp_wp_die_handler\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _mce_set_direction\\(\\) has parameter \\$mce_init with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _mce_set_direction\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _scalar_wp_die_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _scalar_wp_die_handler\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_array_get\\(\\) has parameter \\$input_array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_array_get\\(\\) has parameter \\$path with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_array_set\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_array_set\\(\\) has parameter \\$input_array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_array_set\\(\\) has parameter \\$path with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_check_alternate_file_names\\(\\) has parameter \\$files with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_check_existing_file_names\\(\\) has parameter \\$files with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_die_process_input\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_die_process_input\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_json_prepare_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_timezone_choice_usort_callback\\(\\) has parameter \\$a with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_timezone_choice_usort_callback\\(\\) has parameter \\$b with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_upload_dir\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _xml_wp_die_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _xml_wp_die_handler\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _xmlrpc_wp_die_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _xmlrpc_wp_die_handler\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_magic_quotes\\(\\) has parameter \\$input_array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_magic_quotes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_query_arg\\(\\) has parameter \\$args with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function build_query\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function cache_javascript_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_dirsize_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function dead_db\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_favicon\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_feed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_feed_atom\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_feed_rdf\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_feed_rss\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_feed_rss2\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_robots\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_file_data\\(\\) has parameter \\$default_headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function maybe_serialize\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function mbstring_binary_safe_encoding\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function nocache_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function recurse_dirsize\\(\\) has parameter \\$directory_cache with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function reset_mbstring_encoding\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function send_frame_options_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function send_nosniff_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function smilies_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function status_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp\\(\\) has parameter \\$query_vars with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_notice\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_array_slice_assoc\\(\\) has parameter \\$input_array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_array_slice_assoc\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_array_slice_assoc\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_auth_check\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_auth_check\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_auth_check_html\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_auth_check_load\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_filetype\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_filetype_and_ext\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_debug_backtrace_summary\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_die\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_direct_php_update_button\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_filter_object_list\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_filter_object_list\\(\\) has parameter \\$input_list with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_filter_object_list\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_find_hierarchy_loop\\(\\) has parameter \\$callback_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_find_hierarchy_loop\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_find_hierarchy_loop_tortoise_hare\\(\\) has parameter \\$callback_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_find_hierarchy_loop_tortoise_hare\\(\\) has parameter \\$override with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_admin_notice\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_ext_types\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_nocache_headers\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_upload_dir\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_json_file_decode\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_filter\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_filter\\(\\) has parameter \\$input_list with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_filter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_pluck\\(\\) has parameter \\$input_list with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_pluck\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_sort\\(\\) has parameter \\$input_list with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_sort\\(\\) has parameter \\$orderby with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_sort\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_load_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_nonce_ays\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_ob_end_flush_all\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_parse_args\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_parse_args\\(\\) has parameter \\$defaults with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_parse_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_parse_id_list\\(\\) has parameter \\$input_list with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_parse_list\\(\\) has parameter \\$input_list with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_parse_list\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_parse_slug_list\\(\\) has parameter \\$input_list with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_post_preview_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_privacy_delete_old_export_files\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_recursive_ksort\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_recursive_ksort\\(\\) has parameter \\$input_array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_schedule_delete_old_privacy_export_files\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_scheduled_delete\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_send_json\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_send_json_error\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_send_json_success\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_site_admin_email_change_notification\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_trigger_error\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_unique_id_from_values\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_upload_bits\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_upload_dir\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widgets_add_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_scripts_add_args_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.wp-scripts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_scripts_add_args_data\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.wp-scripts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_scripts_maybe_doing_it_wrong\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.wp-scripts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dequeue_script\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.wp-scripts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_deregister_script\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.wp-scripts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_script\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.wp-scripts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dequeue_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.wp-styles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_deregister_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.wp-styles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/functions.wp-styles.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_render_title_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_thickbox\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function bloginfo\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function delete_get_calendar_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function feed_links\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function feed_links\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function feed_links_extra\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function feed_links_extra\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_calendar\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_footer\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_header\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_search_form\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_sidebar\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_template_part\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function language_attributes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function paginate_links\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_admin_color_schemes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rsd_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function site_icon_url\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_archive_description\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_archive_title\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_custom_logo\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_date_xml\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_generator\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_modified_time\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_search_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_time\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_weekday\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_weekday_date\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_css\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_css_color\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_css_color\\(\\) has parameter \\$colors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_admin_css_color\\(\\) has parameter \\$icons with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_body_open\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_editor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_editor\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_code_editor\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_code_editor\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_editor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_generator\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_archives\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_code_editor_settings\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_code_editor_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_head\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_heartbeat_settings\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_heartbeat_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_login_form\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_preload_resources\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_resource_hints\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_site_icon\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_strict_cross_origin_referrer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/general-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_global_styles_for_blocks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/global-styles-and-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_clean_theme_json_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/global-styles-and-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_block_css_selector\\(\\) has parameter \\$target with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/global-styles-and-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_block_name_from_theme_json_path\\(\\) has parameter \\$path with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/global-styles-and-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_global_settings\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/global-styles-and-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_global_settings\\(\\) has parameter \\$path with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/global-styles-and-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_global_styles\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/global-styles-and-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_global_styles\\(\\) has parameter \\$path with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/global-styles-and-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_global_stylesheet\\(\\) has parameter \\$types with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/global-styles-and-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_theme_data_custom_templates\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/global-styles-and-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_theme_data_template_parts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/global-styles-and-settings.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Active_Formatting_Elements\\:\\:push\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-active-formatting-elements.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Active_Formatting_Elements\\:\\:walk_down\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-active-formatting-elements.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Active_Formatting_Elements\\:\\:walk_up\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-active-formatting-elements.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Open_Elements\\:\\:walk_down\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-open-elements.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Open_Elements\\:\\:walk_up\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-open-elements.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Processor\\:\\:class_list\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Processor\\:\\:get_attribute_names_with_prefix\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Processor\\:\\:next_tag\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Tag_Processor\\:\\:class_list\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Tag_Processor\\:\\:get_attribute_names_with_prefix\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Tag_Processor\\:\\:next_tag\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Tag_Processor\\:\\:parse_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Tag_Processor\\:\\:parse_query\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_HTML_Tag_Processor\\:\\:\\$last_query type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/html-api/class-wp-html-tag-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_component_from_parsed_url_array\\(\\) has parameter \\$url_parts with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_http_supports\\(\\) has parameter \\$capabilities with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_get\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_get\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_head\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_head\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_post\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_post\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_request\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_request\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_retrieve_body\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_retrieve_cookie\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_retrieve_cookie_value\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_retrieve_cookies\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_retrieve_header\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_retrieve_header\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_retrieve_headers\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_retrieve_headers\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_retrieve_headers\\(\\) return type has no value type specified in iterable type array\\|WpOrg\\\\Requests\\\\Utility\\\\CaseInsensitiveDictionary\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_retrieve_response_code\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remote_retrieve_response_message\\(\\) has parameter \\$response with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_safe_remote_get\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_safe_remote_get\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_safe_remote_head\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_safe_remote_head\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_safe_remote_post\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_safe_remote_post\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_safe_remote_request\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_safe_remote_request\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/http.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_https_detection_errors\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/https-detection.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_https_migration_required\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/https-migration.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API_Directives_Processor\\:\\:get_after_opener_tag_and_before_closer_tag_positions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API_Directives_Processor\\:\\:get_balanced_tag_bookmarks\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:add_client_navigation_support_to_script_module\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:add_hooks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:add_load_on_client_navigation_attribute_to_script_modules\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:config\\(\\) has parameter \\$config with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:config\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_bind_processor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_class_processor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_context_processor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_each_processor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_each_processor\\(\\) has parameter \\$tag_stack with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_interactive_processor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_router_region_processor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_style_processor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:data_wp_text_processor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:evaluate\\(\\) has parameter \\$entry with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:extract_directive_value\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:filter_script_module_interactivity_data\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:filter_script_module_interactivity_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:filter_script_module_interactivity_router_data\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:filter_script_module_interactivity_router_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:get_context\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:get_directive_entries\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:parse_directive_name\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:print_client_interactivity_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:print_router_loading_and_screen_reader_markup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:print_router_markup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:register_script_modules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:state\\(\\) has parameter \\$state with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Interactivity_API\\:\\:state\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Interactivity_API\\:\\:\\$config_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Interactivity_API\\:\\:\\$derived_state_closures type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Interactivity_API\\:\\:\\$directive_processors type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Interactivity_API\\:\\:\\$state_data type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/class-wp-interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_interactivity_config\\(\\) has parameter \\$config with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_interactivity_config\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_interactivity_data_wp_context\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_interactivity_get_context\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_interactivity_state\\(\\) has parameter \\$state with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_interactivity_state\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/interactivity-api/interactivity-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_file\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/js/tinymce/wp-tinymce.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_file\\(\\) has parameter \\$path with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/js/tinymce/wp-tinymce.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_add_global_attributes\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_add_global_attributes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_kses_decode_entities_chr\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_kses_decode_entities_chr_hexdec\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_kses_split_callback\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function kses_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function kses_init_filters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function kses_remove_filters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_allowed_html\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_allowed_html\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_array_lc\\(\\) has parameter \\$inarray with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_array_lc\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_attr\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_attr_check\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_attr_parse\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_hair_parse\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_hook\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_named_entities\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_no_null\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_normalize_entities2\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_normalize_entities3\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_split\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_split2\\(\\) has parameter \\$allowed_html with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_kses_xml_named_entities\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var for variable \\$allowedposttags has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var for variable \\$allowedtags has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/kses.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _e\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _ex\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _n_noop\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _nx_noop\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function esc_attr_e\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function esc_html_e\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function translate_nooped_plural\\(\\) has parameter \\$nooped_plural with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function translate_settings_using_i18n_schema\\(\\) has parameter \\$i18n_schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function translate_settings_using_i18n_schema\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function translate_settings_using_i18n_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dropdown_languages\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_installed_translations\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Translation_Controller\\:\\:set_locale\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n/class-wp-translation-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Translation_Controller\\:\\:translate_plural\\(\\) has parameter \\$plurals with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n/class-wp-translation-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Translation_File_PHP\\:\\:parse_file\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n/class-wp-translation-file-php.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Translation_File\\:\\:parse_file\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/l10n/class-wp-translation-file.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function adjacent_post_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function adjacent_posts_rel_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function adjacent_posts_rel_link_wp_head\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function edit_bookmark_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function edit_comment_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function edit_post_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function edit_tag_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_avatar_data\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_avatar_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_avatar_url\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_boundary_post\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_posts_nav_link\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_preview_post_link\\(\\) has parameter \\$query_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_the_comments_navigation\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_the_comments_pagination\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_the_post_navigation\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_the_posts_navigation\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_the_posts_pagination\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function next_comments_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function next_post_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function next_post_rel_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function next_posts_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function paginate_comments_links\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function paginate_comments_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function permalink_anchor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_comments_feed_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function posts_nav_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function prev_post_rel_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function previous_comments_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function previous_post_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function previous_posts_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rel_canonical\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_comments_navigation\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_comments_navigation\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_comments_pagination\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_comments_pagination\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_feed_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_permalink\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_post_navigation\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_post_navigation\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_posts_navigation\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_posts_navigation\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_posts_pagination\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_posts_pagination\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_privacy_policy_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_shortlink\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_shortlink_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_shortlink_wp_head\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/link-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function require_wp_db\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function shutdown_action_hook\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_php_mysql_versions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_debug_mode\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_favicon_request\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_finalize_scraping_edited_file_errors\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_fix_server_vars\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_load_translations_early\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_magic_quotes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maintenance\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_not_installed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_populate_basic_auth_from_authorization_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_internal_encoding\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_lang_dir\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_wpdb_vars\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_start_object_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_start_scraping_edited_file_errors\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_media_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_underscore_audio_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_underscore_video_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_add_additional_image_sizes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_get_image_size_from_meta\\(\\) has parameter \\$image_meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_get_image_size_from_meta\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_image_editor_choose\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_post_thumbnail_class_filter_add\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_post_thumbnail_class_filter_remove\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_post_thumbnail_context_filter_add\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_post_thumbnail_context_filter_remove\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_image_size\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_image_size\\(\\) has parameter \\$crop with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function adjacent_image_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function gallery_shortcode\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_attachment_taxonomies\\(\\) has parameter \\$attachment with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_post_galleries\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_post_galleries_images\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_post_gallery\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function image_downsize\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function image_get_intermediate_size\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function image_make_intermediate_size\\(\\) has parameter \\$crop with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function image_make_intermediate_size\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function image_resize_dimensions\\(\\) has parameter \\$crop with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function image_resize_dimensions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function img_caption_shortcode\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function next_image_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function previous_image_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function set_post_thumbnail_size\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function set_post_thumbnail_size\\(\\) has parameter \\$crop with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_audio_shortcode\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_calculate_image_sizes\\(\\) has parameter \\$image_meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_calculate_image_srcset\\(\\) has parameter \\$image_meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_media\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_media\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_additional_image_sizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_attachment_image\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_attachment_image_sizes\\(\\) has parameter \\$image_meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_attachment_image_src\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_attachment_image_srcset\\(\\) has parameter \\$image_meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_avif_info\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_image_editor\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_loading_optimization_attributes\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_loading_optimization_attributes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_registered_image_subsizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_webp_info\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_getimagesize\\(\\) has parameter \\$image_info with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_getimagesize\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_image_add_srcset_and_sizes\\(\\) has parameter \\$image_meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_image_editor_supports\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_image_file_matches_image_meta\\(\\) has parameter \\$image_meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_image_src_get_dimensions\\(\\) has parameter \\$image_meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_image_src_get_dimensions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_add_fetchpriority_high_attr\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_add_fetchpriority_high_attr\\(\\) has parameter \\$loading_attrs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_add_fetchpriority_high_attr\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_generate_attachment_metadata\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_media_personal_data_exporter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_playlist_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_playlist_shortcode\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_plupload_default_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_prepare_attachment_for_js\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_media_personal_data_exporter\\(\\) has parameter \\$exporters with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_media_personal_data_exporter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_show_heic_upload_error\\(\\) has parameter \\$plupload_settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_show_heic_upload_error\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_underscore_playlist_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_video_shortcode\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_register_meta_args_allowed_list\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_register_meta_args_allowed_list\\(\\) has parameter \\$default_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_register_meta_args_allowed_list\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_meta_sql\\(\\) has parameter \\$meta_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_registered_meta_keys\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_meta\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_meta\\(\\) has parameter \\$deprecated with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_meta_cache\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _update_blog_date_on_post_delete\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-blogs.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _update_blog_date_on_post_publish\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-blogs.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _update_posts_count_on_delete\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-blogs.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _update_posts_count_on_transition_post_status\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-blogs.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_site_details_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-blogs.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_blog_details\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-blogs.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_last_updated\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-blogs.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function refresh_blog_details\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-blogs.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_blog_details\\(\\) has parameter \\$details with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-blogs.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_switch_roles_and_user\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-blogs.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_update_blogs_date\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-blogs.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function ms_cookie_constants\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-default-constants.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function ms_file_constants\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-default-constants.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function ms_subdomain_constants\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-default-constants.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function ms_upload_constants\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-default-constants.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_existing_user_to_blog\\(\\) has parameter \\$details with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_new_user_to_blog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_new_user_to_blog\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function check_upload_mimes\\(\\) has parameter \\$mimes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function check_upload_mimes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function fix_phpmailer_messageid\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_most_recent_post_of_user\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function maybe_add_existing_user_to_blog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function maybe_redirect_404\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function redirect_this_site\\(\\) has parameter \\$deprecated with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function signup_nonce_check\\(\\) has parameter \\$result with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function signup_nonce_check\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function signup_nonce_fields\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_blog_public\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_network_option_new_admin_email\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_posts_count\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upload_is_file_too_big\\(\\) has parameter \\$upload with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function upload_is_file_too_big\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_delete_signup_on_user_delete\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_update_network_site_counts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_update_network_user_counts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_network_admin_email_change_notification\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_schedule_update_network_counts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_network_counts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_network_site_counts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_network_user_counts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_activate_signup\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_create_blog\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_log_new_registrations\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_log_new_registrations\\(\\) has parameter \\$user_id with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_signup_blog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_signup_blog\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_signup_blog_notification\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_signup_user\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_signup_user\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_signup_user_notification\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_validate_blog_signup\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_validate_user_signup\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_welcome_notification\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_welcome_user_notification\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-functions.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function ms_not_installed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-load.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _prime_network_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _prime_network_caches\\(\\) has parameter \\$network_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_network_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_network_cache\\(\\) has parameter \\$ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_networks\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_networks\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_network_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_network_cache\\(\\) has parameter \\$networks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-network.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _prime_site_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _prime_site_caches\\(\\) has parameter \\$ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_blog_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_sites\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_site_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_site_cache\\(\\) has parameter \\$sites with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_sitemeta_cache\\(\\) has parameter \\$site_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_sitemeta_cache\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_set_sites_last_changed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_initialize_site\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_insert_site\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_lazyload_site_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_lazyload_site_meta\\(\\) has parameter \\$site_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_clean_new_site_cache_on_update\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_transition_site_statuses_on_update\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_update_network_site_counts_on_update\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_normalize_site_data\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_normalize_site_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_prepare_site_data\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_prepare_site_data\\(\\) has parameter \\$defaults with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_prepare_site_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_blog_public_option_on_site_update\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_site\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_validate_site_data\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_validate_site_data\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/ms-site.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_menu_item_classes_by_context\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_menu_item_classes_by_context\\(\\) has parameter \\$menu_items with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function walk_nav_menu_tree\\(\\) has parameter \\$items with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_nav_menu\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_auto_add_pages_to_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_delete_customize_changeset_dependent_auto_drafts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_delete_post_menu_item\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_delete_tax_menu_item\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_menus_changed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_reset_invalid_menu_item_parent\\(\\) has parameter \\$menu_item_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_reset_invalid_menu_item_parent\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_nav_menu\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_nav_menus\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_menu_item_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_nav_menu_items\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_nav_menu_items\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_nav_menus\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_map_nav_menu_locations\\(\\) has parameter \\$new_nav_menu_locations with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_map_nav_menu_locations\\(\\) has parameter \\$old_nav_menu_locations with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_map_nav_menu_locations\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_nav_menu_item\\(\\) has parameter \\$menu_item_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_nav_menu_object\\(\\) has parameter \\$menu_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/nav-menu.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function delete_all_user_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function delete_expired_transients\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function form_option\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_all_user_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_options\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_registered_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_initial_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_setting\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_setting\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function unregister_setting\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_load_alloptions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_load_core_site_options\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_prime_network_option_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_prime_option_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_prime_option_caches_by_group\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_prime_site_option_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_protect_special_option\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_all_user_settings\\(\\) has parameter \\$user_settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_option_autoload_values\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_option_autoload_values\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_options_autoload\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_user_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/option.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WordPress\\\\AiClient\\\\Providers\\\\Http\\\\Enums\\\\RequestAuthenticationMethod\\:\\:getImplementationClass\\(\\) return type with generic interface WordPress\\\\AiClient\\\\Common\\\\Contracts\\\\WithArrayTransformationInterface does not specify its types\\: TArrayShape$#', + 'identifier' => 'missingType.generics', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/php-ai-client/src/Providers/Http/Enums/RequestAuthenticationMethod.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_sanitize_utf8_in_redirect\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function auth_redirect\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function cache_users\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_avatar\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_clear_auth_cookie\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_logout\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_new_user_notification\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_password_change_notification\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_auth_cookie\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_password\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_text_diff\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/pluggable.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_call_all_hook\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_call_all_hook\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_filter_build_unique_id\\(\\) has parameter \\$callback with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function apply_filters_deprecated\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function apply_filters_ref_array\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_action\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_action_deprecated\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_action_deprecated\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_action_ref_array\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_action_ref_array\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function has_action\\(\\) has parameter \\$callback with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function has_filter\\(\\) has parameter \\$callback with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_activation_hook\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_deactivation_hook\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_uninstall_hook\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_action\\(\\) has parameter \\$callback with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_filter\\(\\) has parameter \\$callback with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/plugin.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _post_format_get_terms\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-formats.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _post_format_get_terms\\(\\) has parameter \\$taxonomies with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-formats.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _post_format_get_terms\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-formats.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _post_format_get_terms\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-formats.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _post_format_request\\(\\) has parameter \\$qvs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-formats.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _post_format_request\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-formats.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _post_format_wp_get_object_terms\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-formats.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _post_format_wp_get_object_terms\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-formats.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function set_post_format\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-formats.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function body_class\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_class\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function post_custom\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_ID\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_attachment_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_content\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_excerpt\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_guid\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_title_attribute\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function walk_page_tree\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function walk_page_tree\\(\\) has parameter \\$pages with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dropdown_pages\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_attachment_link\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_link_pages\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_pages\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_post_revisions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_page_menu\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_the_post_thumbnail\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-thumbnail-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_post_thumbnail\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-thumbnail-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_post_thumbnail\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-thumbnail-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_post_thumbnail_caption\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-thumbnail-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_post_thumbnail_url\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-thumbnail-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_post_thumbnail_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post-thumbnail-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _add_post_type_submenus\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _future_post_hook\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_custom_object_labels\\(\\) has parameter \\$nohier_vs_hier_defaults with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _page_traverse_name\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _page_traverse_name\\(\\) has parameter \\$children with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _post_type_meta_capabilities\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _prime_post_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _prime_post_parent_id_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _publish_post_hook\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _reset_front_page_settings_for_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _transition_post_status\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _update_term_count_on_transition_post_status\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_ping\\(\\) has parameter \\$uri with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_post_type_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_post_type_support\\(\\) has parameter \\$feature with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function check_and_publish_future_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_attachment_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_post_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function create_initial_post_types\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_all_post_type_supports\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_children\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_page\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_page_by_path\\(\\) has parameter \\$post_type with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_page_by_path\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_pages\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_post\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_post_custom_keys\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_post_custom_values\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_post_mime_types\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_post_stati\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_post_types\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_post_types_by_support\\(\\) has parameter \\$feature with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_posts\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_private_posts_cap_sql\\(\\) has parameter \\$post_type with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_post_meta\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_post_status\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_post_type\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_post_type_support\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function sanitize_post\\(\\) has parameter \\$post with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function sanitize_post\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function stick_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function trackback_url_list\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function unstick_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_post_author_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_post_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_post_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_post_parent_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_postmeta_cache\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_post_tags\\(\\) has parameter \\$tags with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_post_tags\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_trashed_suffix_to_post_name_for_trashed_posts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_after_insert_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_set_posts_last_changed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_for_changed_dates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_for_changed_slugs\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_create_initial_post_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_delete_attachment_files\\(\\) has parameter \\$backup_sizes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_delete_attachment_files\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_delete_auto_drafts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_attachment_metadata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_post_categories\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_post_categories\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_post_tags\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_post_tags\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_post_terms\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_post_terms\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_recent_posts\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_recent_posts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_insert_attachment\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_insert_post\\(\\) has parameter \\$postarr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_match_mime_types\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_publish_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_queue_posts_for_term_meta_lazyload\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_post_categories\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_post_tags\\(\\) has parameter \\$tags with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_post_tags\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_post_terms\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_post_terms\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_transition_post_status\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_attachment_metadata\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_post\\(\\) has parameter \\$postarr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/post.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function generate_postdata\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function query_posts\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rewind_posts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function set_query_var\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_comment\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_post\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_old_slug_redirect\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_reset_postdata\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_reset_query\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/query.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _rest_array_intersect_key_recursive\\(\\) has parameter \\$array1 with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _rest_array_intersect_key_recursive\\(\\) has parameter \\$array2 with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _rest_array_intersect_key_recursive\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function create_initial_rest_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_rest_field\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_rest_field\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_rest_field\\(\\) has parameter \\$object_type with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_rest_route\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_api_default_filters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_api_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_api_loaded\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_api_register_rewrites\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_application_password_collect_status\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_application_password_collect_status\\(\\) has parameter \\$app_password with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_cookie_collect_status\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_default_additional_properties_to_false\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_default_additional_properties_to_false\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_ensure_request\\(\\) has parameter \\$request with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_filter_response_by_context\\(\\) has parameter \\$response_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_filter_response_by_context\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_filter_response_by_context\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_find_any_matching_schema\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_find_any_matching_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_find_matching_pattern_property_schema\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_find_matching_pattern_property_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_find_one_matching_schema\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_find_one_matching_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_format_combining_operation_error\\(\\) has parameter \\$error with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_get_combining_operation_error\\(\\) has parameter \\$errors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_get_combining_operation_error\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_get_date_with_gmt\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_get_endpoint_args_for_schema\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_get_endpoint_args_for_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_handle_deprecated_argument\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_handle_deprecated_function\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_handle_doing_it_wrong\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_handle_multi_type_schema\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_is_field_included\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_output_link_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_output_link_wp_head\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_output_rsd\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_parse_embed_param\\(\\) has parameter \\$embed with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_preload_api_request\\(\\) has parameter \\$memo with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_preload_api_request\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_sanitize_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_sanitize_object\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_sanitize_value_from_schema\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_validate_array_contains_unique_items\\(\\) has parameter \\$input_array with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_validate_array_value_from_schema\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_validate_enum\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_validate_integer_value_from_schema\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_validate_number_value_from_schema\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_validate_object_value_from_schema\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_validate_string_value_from_schema\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function rest_validate_value_from_schema\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Class WP_REST_Request implements generic interface ArrayAccess but does not specify its types\\: TKey, TValue$#', + 'identifier' => 'missingType.generics', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:__construct\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:add_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:get_attributes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:get_body_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:get_content_type\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:get_default_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:get_file_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:get_header_as_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:get_headers\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:get_json_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:get_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:get_query_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:get_url_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:parse_body_params\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:remove_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_attributes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_attributes\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_body\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_body_params\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_body_params\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_default_params\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_default_params\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_file_params\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_file_params\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_headers\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_method\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_param\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_query_params\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_query_params\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_route\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_url_params\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Request\\:\\:set_url_params\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Request\\:\\:\\$attributes type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Request\\:\\:\\$headers type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Request\\:\\:\\$params type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-request.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:add_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:add_link\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:add_links\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:add_links\\(\\) has parameter \\$links with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:get_curies\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:get_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:get_matched_handler\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:link_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:link_header\\(\\) has parameter \\$other with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:remove_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:set_matched_handler\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:set_matched_handler\\(\\) has parameter \\$handler with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Response\\:\\:set_matched_route\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Response\\:\\:\\$links type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Response\\:\\:\\$matched_handler type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-response.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:add_active_theme_link_to_index\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:add_image_to_index\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:add_site_icon_to_index\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:add_site_logo_to_index\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:embed_links\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:embed_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_compact_response_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_data_for_route\\(\\) has parameter \\$callbacks with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_data_for_route\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_data_for_routes\\(\\) has parameter \\$routes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_data_for_routes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_headers\\(\\) has parameter \\$server with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_headers\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_response_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_route_options\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_routes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_target_hints_for_link\\(\\) has parameter \\$link with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:get_target_hints_for_link\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:match_request_to_handler\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:register_route\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:register_route\\(\\) has parameter \\$route_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:remove_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:respond_to_request\\(\\) has parameter \\$handler with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:response_to_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:send_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:send_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:send_headers\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Server\\:\\:set_status\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Server\\:\\:\\$dispatching_requests type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Server\\:\\:\\$embed_cache type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Server\\:\\:\\$endpoints type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Server\\:\\:\\$namespaces type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Server\\:\\:\\$route_options type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/class-wp-rest-server.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Application_Passwords_Controller\\:\\:get_application_password\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Application_Passwords_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Application_Passwords_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Application_Passwords_Controller\\:\\:prepare_item_for_response\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Application_Passwords_Controller\\:\\:prepare_links\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Application_Passwords_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Application_Passwords_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:check_upload_size\\(\\) has parameter \\$file with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:get_edit_media_item_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:get_media_types\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:insert_attachment\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:prepare_items_query\\(\\) has parameter \\$prepared_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:prepare_items_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:remove_client_side_media_processing_filters\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:upload_from_data\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:upload_from_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:upload_from_file\\(\\) has parameter \\$files with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:upload_from_file\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Attachments_Controller\\:\\:upload_from_file\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Autosaves_Controller\\:\\:create_post_autosave\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Autosaves_Controller\\:\\:create_post_autosave\\(\\) has parameter \\$post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Autosaves_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Autosaves_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Autosaves_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Directory_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Directory_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Directory_Controller\\:\\:prepare_item_for_response\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Directory_Controller\\:\\:prepare_links\\(\\) has parameter \\$plugin with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Directory_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Directory_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Pattern_Categories_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Pattern_Categories_Controller\\:\\:prepare_item_for_response\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Pattern_Categories_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Patterns_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Patterns_Controller\\:\\:migrate_pattern_categories\\(\\) has parameter \\$pattern with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Patterns_Controller\\:\\:migrate_pattern_categories\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Patterns_Controller\\:\\:prepare_item_for_response\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Patterns_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Block_Patterns_Controller\\:\\:\\$categories_migration type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Renderer_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Renderer_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Types_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Types_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Types_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Block_Types_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Blocks_Controller\\:\\:filter_response_by_context\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Blocks_Controller\\:\\:filter_response_by_context\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Blocks_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Comments_Controller\\:\\:check_is_comment_content_allowed\\(\\) has parameter \\$prepared_comment with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Comments_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Comments_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Comments_Controller\\:\\:prepare_item_for_database\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Comments_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Comments_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:add_additional_fields_schema\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:add_additional_fields_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:add_additional_fields_to_object\\(\\) has parameter \\$response_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:add_additional_fields_to_object\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:filter_response_by_context\\(\\) has parameter \\$response_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:filter_response_by_context\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:get_additional_fields\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:get_context_param\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:get_context_param\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:get_endpoint_args_for_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:get_public_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Controller\\:\\:\\$schema type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Edit_Site_Export_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Collections_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Collections_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Collections_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Collections_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Faces_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Faces_Controller\\:\\:get_create_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Faces_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Faces_Controller\\:\\:get_public_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Faces_Controller\\:\\:get_settings_from_post\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Faces_Controller\\:\\:handle_font_file_upload\\(\\) has parameter \\$file with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Faces_Controller\\:\\:handle_font_file_upload\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Faces_Controller\\:\\:handle_font_file_upload_error\\(\\) has parameter \\$file with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Faces_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Faces_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Faces_Controller\\:\\:sanitize_font_face_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Families_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Families_Controller\\:\\:get_endpoint_args_for_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Families_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Families_Controller\\:\\:get_public_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Families_Controller\\:\\:get_settings_from_post\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Families_Controller\\:\\:prepare_font_face_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Families_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Font_Families_Controller\\:\\:sanitize_font_family_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Global_Styles_Controller\\:\\:get_available_actions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Global_Styles_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Global_Styles_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Global_Styles_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Global_Styles_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Global_Styles_Controller\\:\\:\\$allow_batch type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Global_Styles_Revisions_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Global_Styles_Revisions_Controller\\:\\:get_decoded_global_styles_json\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Global_Styles_Revisions_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Global_Styles_Revisions_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Icons_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-icons-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Icons_Controller\\:\\:get_icon\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-icons-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Icons_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-icons-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Icons_Controller\\:\\:prepare_item_for_response\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-icons-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Icons_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-icons-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menu_Items_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menu_Items_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menu_Items_Controller\\:\\:get_schema_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menu_Items_Controller\\:\\:prepare_items_query\\(\\) has parameter \\$prepared_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menu_Items_Controller\\:\\:prepare_items_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menu_Items_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menu_Locations_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menu_Locations_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menu_Locations_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menu_Locations_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menus_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Menus_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Navigation_Fallback_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Navigation_Fallback_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Navigation_Fallback_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Pattern_Directory_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Pattern_Directory_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Pattern_Directory_Controller\\:\\:get_transient_key\\(\\) has parameter \\$query_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Pattern_Directory_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Plugins_Controller\\:\\:does_plugin_match_request\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Plugins_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Plugins_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Plugins_Controller\\:\\:get_plugin_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Plugins_Controller\\:\\:prepare_item_for_response\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Plugins_Controller\\:\\:prepare_links\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Plugins_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Plugins_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Statuses_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Statuses_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Statuses_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Types_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Types_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Types_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Types_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:get_available_actions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:get_schema_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:handle_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:prepare_items_query\\(\\) has parameter \\$prepared_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:prepare_items_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:prepare_tax_query\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:prepare_tax_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:prepare_taxonomy_limit_schema\\(\\) has parameter \\$query_params with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:prepare_taxonomy_limit_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:sanitize_post_statuses\\(\\) has parameter \\$statuses with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Posts_Controller\\:\\:sanitize_post_statuses\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Posts_Controller\\:\\:\\$allow_batch type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Revisions_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Revisions_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Revisions_Controller\\:\\:prepare_items_query\\(\\) has parameter \\$prepared_args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Revisions_Controller\\:\\:prepare_items_query\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Revisions_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Search_Controller\\:\\:__construct\\(\\) has parameter \\$search_handlers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Search_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Search_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Search_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Search_Controller\\:\\:sanitize_subtypes\\(\\) has parameter \\$subtypes with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Settings_Controller\\:\\:get_item\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Settings_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Settings_Controller\\:\\:get_registered_options\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Settings_Controller\\:\\:prepare_value\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Settings_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Settings_Controller\\:\\:set_additional_properties_to_false\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Settings_Controller\\:\\:set_additional_properties_to_false\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Settings_Controller\\:\\:update_item\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Sidebars_Controller\\:\\:check_read_permission\\(\\) has parameter \\$sidebar with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Sidebars_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Sidebars_Controller\\:\\:get_sidebar\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Sidebars_Controller\\:\\:prepare_item_for_response\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Sidebars_Controller\\:\\:prepare_links\\(\\) has parameter \\$sidebar with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Sidebars_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Sidebars_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Sidebars_Controller\\:\\:retrieve_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Site_Health_Controller\\:\\:get_directory_sizes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Site_Health_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Site_Health_Controller\\:\\:load_admin_textdomain\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Site_Health_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Site_Health_Controller\\:\\:test_authorization_header\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Site_Health_Controller\\:\\:test_background_updates\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Site_Health_Controller\\:\\:test_dotorg_communication\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Site_Health_Controller\\:\\:test_https_status\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Site_Health_Controller\\:\\:test_loopback_requests\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Site_Health_Controller\\:\\:test_page_cache\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Taxonomies_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Taxonomies_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Taxonomies_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Taxonomies_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Template_Autosaves_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Template_Autosaves_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Template_Autosaves_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Template_Revisions_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Template_Revisions_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Template_Revisions_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Templates_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Templates_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Templates_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Templates_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Terms_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Terms_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Terms_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Terms_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Terms_Controller\\:\\:\\$allow_batch type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Themes_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Themes_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Themes_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Themes_Controller\\:\\:prepare_theme_support\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Themes_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Themes_Controller\\:\\:sanitize_theme_status\\(\\) has parameter \\$statuses with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Themes_Controller\\:\\:sanitize_theme_status\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_URL_Details_Controller\\:\\:get_description\\(\\) has parameter \\$meta_elements with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_URL_Details_Controller\\:\\:get_image\\(\\) has parameter \\$meta_elements with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_URL_Details_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_URL_Details_Controller\\:\\:get_meta_with_content_elements\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_URL_Details_Controller\\:\\:get_metadata_from_meta_element\\(\\) has parameter \\$meta_elements with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_URL_Details_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Users_Controller\\:\\:check_role_update\\(\\) has parameter \\$roles with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Users_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Users_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Users_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Users_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Users_Controller\\:\\:\\$allow_batch type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:get_widget\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:get_widget_form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:get_widget_preview\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:get_widgets\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:prepare_item_for_response\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:prepare_links\\(\\) has parameter \\$widget_type with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:render\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widget_Types_Controller\\:\\:render_legacy_widget_preview_iframe\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widgets_Controller\\:\\:get_collection_params\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widgets_Controller\\:\\:get_item_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widgets_Controller\\:\\:prepare_item_for_response\\(\\) has parameter \\$item with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widgets_Controller\\:\\:prepare_links\\(\\) has parameter \\$prepared with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widgets_Controller\\:\\:prepare_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widgets_Controller\\:\\:register_routes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Widgets_Controller\\:\\:retrieve_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_REST_Widgets_Controller\\:\\:\\$allow_batch type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Meta_Fields\\:\\:check_meta_is_array\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Meta_Fields\\:\\:default_additional_properties_to_false\\(\\) has parameter \\$schema with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Meta_Fields\\:\\:default_additional_properties_to_false\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Meta_Fields\\:\\:get_field_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Meta_Fields\\:\\:get_registered_fields\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Meta_Fields\\:\\:get_value\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Meta_Fields\\:\\:prepare_value\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Meta_Fields\\:\\:prepare_value_for_response\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Meta_Fields\\:\\:register_field\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Meta_Fields\\:\\:update_multi_meta_value\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Meta_Fields\\:\\:update_value\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Format_Search_Handler\\:\\:prepare_item\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Format_Search_Handler\\:\\:prepare_item\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Format_Search_Handler\\:\\:prepare_item_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Format_Search_Handler\\:\\:search_items\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Search_Handler\\:\\:prepare_item\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Search_Handler\\:\\:prepare_item\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Search_Handler\\:\\:prepare_item_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Post_Search_Handler\\:\\:search_items\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Search_Handler\\:\\:prepare_item\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Search_Handler\\:\\:prepare_item\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Search_Handler\\:\\:prepare_item_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Search_Handler\\:\\:search_items\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Term_Search_Handler\\:\\:prepare_item\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Term_Search_Handler\\:\\:prepare_item\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Term_Search_Handler\\:\\:prepare_item_links\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_REST_Term_Search_Handler\\:\\:search_items\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _show_post_preview\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_copy_post_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_post_revision_data\\(\\) has parameter \\$post with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_post_revision_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_post_revision_fields\\(\\) has parameter \\$post with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_preview_post_thumbnail_filter\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_preview_post_thumbnail_filter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_preview_terms_filter\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_preview_terms_filter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_put_post_revision\\(\\) has parameter \\$post with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_upgrade_revisions_of_post\\(\\) has parameter \\$revisions with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_latest_revision_id_and_total_count\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_post_revision\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_post_revisions\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_post_revision_meta_keys\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_restore_post_revision\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_restore_post_revision_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_save_post_revision_on_insert\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_save_revisioned_meta_fields\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/revision.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_permastruct\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_permastruct\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_rewrite_endpoint\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_rewrite_rule\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_rewrite_rule\\(\\) has parameter \\$query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_rewrite_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function flush_rewrite_rules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_permastruct\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_rewrite_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_resolve_numeric_slug_conflicts\\(\\) has parameter \\$query_vars with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_resolve_numeric_slug_conflicts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/rewrite.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_max_image_preview_large\\(\\) has parameter \\$robots with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_max_image_preview_large\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_no_robots\\(\\) has parameter \\$robots with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_no_robots\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_noindex\\(\\) has parameter \\$robots with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_noindex\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_noindex_embeds\\(\\) has parameter \\$robots with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_noindex_embeds\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_noindex_search\\(\\) has parameter \\$robots with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_noindex_search\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_sensitive_page\\(\\) has parameter \\$robots with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_robots_sensitive_page\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/robots-template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _print_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _print_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_footer_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function enqueue_block_styles_assets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function enqueue_editor_block_styles_assets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function script_concat_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_common_block_scripts_and_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_default_packages\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_default_packages_inline_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_default_packages_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_default_packages_vendor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_default_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_default_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_block_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_block_support_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_classic_theme_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_command_palette_assets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_editor_block_directory_assets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_editor_format_library_assets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_global_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_global_styles_css_custom_properties\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_registered_block_scripts_and_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_stored_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_hoist_late_printed_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_just_in_time_script_localization\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_load_classic_theme_block_styles_on_demand\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_localize_community_events\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_localize_jquery_ui_datepicker\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_inline_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_footer_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_inline_script_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_print_script_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_development_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_tinymce_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_tinymce_inline_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Tag_Processor@anonymous/wp\\-includes/script\\-loader\\.php\\:3834\\:\\:insert_after\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Tag_Processor@anonymous/wp\\-includes/script\\-loader\\.php\\:3834\\:\\:insert_before\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_HTML_Tag_Processor@anonymous/wp\\-includes/script\\-loader\\.php\\:3834\\:\\:remove\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-loader.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_default_script_modules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dequeue_script_module\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_deregister_script_module\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_block_editor_script_modules\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_script_module\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_script_module\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/script-modules.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_shortcode\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_shortcode_tag\\(\\) has parameter \\$m with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_shortcodes_in_html_tags\\(\\) has parameter \\$tagnames with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_shortcode_regex\\(\\) has parameter \\$tagnames with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_all_shortcodes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_shortcode\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function shortcode_atts\\(\\) has parameter \\$atts with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function shortcode_atts\\(\\) has parameter \\$pairs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function shortcode_atts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function shortcode_parse_atts\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function strip_shortcode_tag\\(\\) has parameter \\$m with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^PHPDoc tag @var has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/shortcodes.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Index\\:\\:get_sitemap_list\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-index.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Provider\\:\\:get_object_subtypes\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-provider.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Provider\\:\\:get_sitemap_entries\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-provider.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Provider\\:\\:get_sitemap_type_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-provider.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Provider\\:\\:get_url_list\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-provider.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Renderer\\:\\:check_for_simple_xml_availability\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-renderer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Renderer\\:\\:get_sitemap_index_xml\\(\\) has parameter \\$sitemaps with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-renderer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Renderer\\:\\:get_sitemap_xml\\(\\) has parameter \\$url_list with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-renderer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Renderer\\:\\:render_index\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-renderer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Renderer\\:\\:render_index\\(\\) has parameter \\$sitemaps with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-renderer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Renderer\\:\\:render_sitemap\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-renderer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Renderer\\:\\:render_sitemap\\(\\) has parameter \\$url_list with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-renderer.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Stylesheet\\:\\:get_sitemap_index_stylesheet\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Stylesheet\\:\\:get_sitemap_stylesheet\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Stylesheet\\:\\:render_stylesheet\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps\\:\\:init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps\\:\\:register_rewrites\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps\\:\\:register_sitemaps\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps\\:\\:render_sitemaps\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/class-wp-sitemaps.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Posts\\:\\:get_posts_query_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Posts\\:\\:get_url_list\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Taxonomies\\:\\:get_taxonomies_query_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Taxonomies\\:\\:get_url_list\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Users\\:\\:get_url_list\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Sitemaps_Users\\:\\:get_users_query_args\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_style_engine_get_styles\\(\\) has parameter \\$block_styles with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_style_engine_get_styles\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_style_engine_get_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_style_engine_get_stylesheet_from_context\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_style_engine_get_stylesheet_from_css_rules\\(\\) has parameter \\$css_rules with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_style_engine_get_stylesheet_from_css_rules\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine_CSS_Rules_Store\\:\\:remove_all_stores\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine-css-rules-store.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine_CSS_Rules_Store\\:\\:remove_rule\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine-css-rules-store.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine_CSS_Rules_Store\\:\\:set_name\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine-css-rules-store.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine_Processor\\:\\:combine_rules_selectors\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine_Processor\\:\\:get_css\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine-processor.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Constant WP_Style_Engine\\:\\:BLOCK_STYLE_DEFINITIONS_METADATA type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:compile_stylesheet_from_css_rules\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:get_classnames\\(\\) has parameter \\$style_definition with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:get_css_declarations\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:get_css_declarations\\(\\) has parameter \\$style_definition with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:get_individual_property_css_declarations\\(\\) has parameter \\$individual_property_definition with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:get_individual_property_css_declarations\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:get_individual_property_css_declarations\\(\\) has parameter \\$style_value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:get_url_or_value_css_declaration\\(\\) has parameter \\$style_definition with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:get_url_or_value_css_declaration\\(\\) has parameter \\$style_value with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:parse_block_styles\\(\\) has parameter \\$block_styles with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:parse_block_styles\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:parse_block_styles\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Style_Engine\\:\\:store_css_rule\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/style-engine/class-wp-style-engine.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_term_children\\(\\) has parameter \\$ancestors with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_term_children\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_term_children\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _get_term_hierarchy\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _pad_term_counts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _prime_term_caches\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _prime_term_caches\\(\\) has parameter \\$term_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _update_generic_term_count\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _update_post_term_count\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_batch_split_terms\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_check_for_scheduled_split_terms\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_check_split_default_terms\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_check_split_nav_menu_terms\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_check_split_terms_in_menus\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_object_term_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_object_term_cache\\(\\) has parameter \\$object_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_object_term_cache\\(\\) has parameter \\$object_type with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_taxonomy_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_term_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function create_initial_taxonomies\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_objects_in_term\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_tax_sql\\(\\) has parameter \\$tax_query with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_taxonomies\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_term\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_term_by\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_term_children\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_terms\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_terms\\(\\) has parameter \\$deprecated with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_the_taxonomies\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function has_term_meta\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_taxonomy\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_taxonomy\\(\\) has parameter \\$object_type with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_term_meta\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function sanitize_term\\(\\) has parameter \\$term with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function sanitize_term\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_taxonomies\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_taxonomies\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_term_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_termmeta_cache\\(\\) has parameter \\$term_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function update_termmeta_cache\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_object_terms\\(\\) has parameter \\$taxonomy with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_object_terms\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_add_object_terms\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_set_terms_last_changed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_count_terms\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_count_terms\\(\\) has parameter \\$deprecated with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_delete_object_term_relationships\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_delete_object_term_relationships\\(\\) has parameter \\$taxonomies with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_delete_term\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_object_terms\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_split_terms\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_insert_term\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_insert_term\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_lazyload_term_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_lazyload_term_meta\\(\\) has parameter \\$term_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_remove_object_terms\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_object_terms\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_object_terms\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_term\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_term\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_term_count\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_term_count_now\\(\\) has parameter \\$terms with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/taxonomy.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function load_template\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function load_template\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function locate_template\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function locate_template\\(\\) has parameter \\$template_names with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_template_globals\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/template.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_attach_theme_preview_middleware\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-previews.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_block_theme_activate_nonce\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-previews.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_initialize_theme_preview_hooks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-previews.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enable_block_templates\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-templates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_enqueue_block_template_skip_link\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-templates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_unique_slug_on_create_template_part\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme-templates.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _add_default_theme_supports\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _custom_background_cb\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _custom_header_background_just_in_time\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _custom_logo_header_styles\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _delete_attachment_theme_mod\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_customize_changeset_filter_insert_post_data\\(\\) has parameter \\$post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_customize_changeset_filter_insert_post_data\\(\\) has parameter \\$supplied_post_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_customize_changeset_filter_insert_post_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_customize_include\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_customize_loader_settings\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_customize_publish_changeset\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_keep_alive_customize_changeset_dependent_auto_drafts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_editor_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function add_editor_style\\(\\) has parameter \\$stylesheet with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function background_color\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function background_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function check_theme_switched\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function create_initial_theme_features\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_header_image_tag\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_header_video_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_registered_theme_feature\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_registered_theme_features\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_theme_mods\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_theme_roots\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_theme_starter_content\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_uploaded_header_images\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function header_image\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function header_textcolor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function locale_stylesheet\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_default_headers\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_default_headers\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_theme_feature\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_theme_mod\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function remove_theme_mods\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function search_theme_directories\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function switch_theme\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_custom_header_markup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_header_image_tag\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_header_image_tag\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_header_video_url\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function unregister_default_headers\\(\\) has parameter \\$header with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_clean_themes_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_custom_css_cb\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_customize_support_script\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_themes\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_custom_css_post\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/theme.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _maybe_update_core\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _maybe_update_plugins\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _maybe_update_themes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_delete_all_temp_backups\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_clean_update_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_delete_all_temp_backups\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_update_data\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_maybe_auto_update\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_schedule_update_checks\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_plugins\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_plugins\\(\\) has parameter \\$extra_stats with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_themes\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_themes\\(\\) has parameter \\$extra_stats with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_version_check\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_version_check\\(\\) has parameter \\$extra_stats with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/update.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_privacy_account_request_confirmed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_privacy_send_erasure_fulfillment_notification\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_privacy_send_request_confirmation_notification\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function clean_user_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function count_user_posts\\(\\) has parameter \\$post_type with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function count_users\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_users\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function get_users\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function new_user_email_admin_notice\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function reset_password\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function send_confirmation_on_profile_email\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function setup_userdata\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_cache_set_users_last_changed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_create_user_request\\(\\) has parameter \\$request_data with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_destroy_all_sessions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_destroy_current_session\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_destroy_other_sessions\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_dropdown_users\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_all_sessions\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_insert_user\\(\\) has parameter \\$userdata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_list_users\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_persisted_preferences_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_user_personal_data_exporter\\(\\) has parameter \\$exporters with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_user_personal_data_exporter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_schedule_update_user_counts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_send_new_user_notifications\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_signon\\(\\) has parameter \\$credentials with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_update_user\\(\\) has parameter \\$userdata with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_user_personal_data_exporter\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/user.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_scrub_utf8\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/utf8.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_scrub_utf8\\(\\) has parameter \\$text with no type specified\\.$#', + 'identifier' => 'missingType.parameter', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/utf8.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _register_widget_form_callback\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _register_widget_form_callback\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _register_widget_update_callback\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _register_widget_update_callback\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_block_theme_register_classic_sidebars\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_remove_unregistered_widgets\\(\\) has parameter \\$allowed_widget_ids with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_remove_unregistered_widgets\\(\\) has parameter \\$sidebars_widgets with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_remove_unregistered_widgets\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function _wp_sidebars_changed\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_sidebar\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_sidebars\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_sidebars\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function register_widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function retrieve_widgets\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function the_widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function unregister_sidebar\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function unregister_widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_assign_widget_to_sidebar\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_check_widget_editor_deps\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_convert_widget_settings\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_convert_widget_settings\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_sidebar\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_sidebars_widgets\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_get_widget_defaults\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_map_sidebars_widgets\\(\\) has parameter \\$existing_sidebars_widgets with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_map_sidebars_widgets\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_parse_widget_id\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_sidebar_widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_sidebar_widget\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_widget_control\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_register_widget_control\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_sidebars_widgets\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_set_sidebars_widgets\\(\\) has parameter \\$sidebars_widgets with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_setup_widgets_block_editor\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_unregister_sidebar_widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_unregister_widget_control\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widget_rss_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widget_rss_form\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widget_rss_form\\(\\) has parameter \\$inputs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widget_rss_output\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widget_rss_output\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widget_rss_output\\(\\) has parameter \\$rss with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widget_rss_process\\(\\) has parameter \\$widget_rss with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widget_rss_process\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_widgets_init\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Nav_Menu_Widget\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-nav-menu-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Nav_Menu_Widget\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-nav-menu-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Nav_Menu_Widget\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-nav-menu-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Nav_Menu_Widget\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-nav-menu-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Nav_Menu_Widget\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-nav-menu-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Nav_Menu_Widget\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-nav-menu-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Nav_Menu_Widget\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-nav-menu-widget.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Archives\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-archives.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Archives\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-archives.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Archives\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-archives.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Archives\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-archives.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Archives\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-archives.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Archives\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-archives.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Archives\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-archives.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Block\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Block\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Block\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Block\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Block\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Block\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Block\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Widget_Block\\:\\:\\$default_instance type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-block.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Calendar\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-calendar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Calendar\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-calendar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Calendar\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-calendar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Calendar\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-calendar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Calendar\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-calendar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Calendar\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-calendar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Calendar\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-calendar.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Categories\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-categories.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Categories\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-categories.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Categories\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-categories.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Categories\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-categories.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Categories\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-categories.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Categories\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-categories.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Categories\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-categories.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:_filter_gallery_shortcode_attrs\\(\\) has parameter \\$attrs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:_filter_gallery_shortcode_attrs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:_register_one\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:add_help_text\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:enqueue_admin_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:render_control_template_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Custom_HTML\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Widget_Custom_HTML\\:\\:\\$default_instance type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-custom-html.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Links\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-links.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Links\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-links.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Links\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-links.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Links\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-links.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Links\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-links.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Links\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-links.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Links\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-links.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Audio\\:\\:enqueue_admin_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-audio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Audio\\:\\:enqueue_preview_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-audio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Audio\\:\\:get_instance_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-audio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Audio\\:\\:render_control_template_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-audio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Audio\\:\\:render_media\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-audio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Audio\\:\\:render_media\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-audio.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Gallery\\:\\:enqueue_admin_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-gallery.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Gallery\\:\\:get_instance_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-gallery.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Gallery\\:\\:has_content\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-gallery.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Gallery\\:\\:render_control_template_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-gallery.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Gallery\\:\\:render_media\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-gallery.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Gallery\\:\\:render_media\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-gallery.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Image\\:\\:enqueue_admin_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Image\\:\\:get_instance_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Image\\:\\:render_control_template_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Image\\:\\:render_media\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Image\\:\\:render_media\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-image.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Video\\:\\:enqueue_admin_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-video.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Video\\:\\:enqueue_preview_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-video.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Video\\:\\:get_instance_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-video.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Video\\:\\:render_control_template_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-video.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Video\\:\\:render_media\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-video.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media_Video\\:\\:render_media\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media-video.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:__construct\\(\\) has parameter \\$control_options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:__construct\\(\\) has parameter \\$widget_options with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:_register_one\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:display_media_state\\(\\) has parameter \\$states with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:display_media_state\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:enqueue_admin_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:enqueue_preview_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:get_instance_schema\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:get_l10n_defaults\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:has_content\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:render_control_template_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:render_media\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:render_media\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:reset_default_labels\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:sanitize_token_list\\(\\) has parameter \\$tokens with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Media\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Property WP_Widget_Media\\:\\:\\$l10n type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-media.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Meta\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Meta\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Meta\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Meta\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Meta\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Meta\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Meta\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-meta.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Pages\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-pages.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Pages\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-pages.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Pages\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-pages.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Pages\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-pages.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Pages\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-pages.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Pages\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-pages.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Pages\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-pages.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Comments\\:\\:flush_widget_cache\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Comments\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Comments\\:\\:recent_comments_style\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Comments\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Comments\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Comments\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Comments\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Comments\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Comments\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-comments.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Posts\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-posts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Posts\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-posts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Posts\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-posts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Posts\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-posts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Posts\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-posts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Posts\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-posts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Recent_Posts\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-recent-posts.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_RSS\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-rss.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_RSS\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-rss.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_RSS\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-rss.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_RSS\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-rss.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_RSS\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-rss.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_RSS\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-rss.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_RSS\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-rss.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Search\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Search\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Search\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Search\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Search\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Search\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Search\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-search.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Tag_Cloud\\:\\:_get_current_taxonomy\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-tag-cloud.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Tag_Cloud\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-tag-cloud.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Tag_Cloud\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-tag-cloud.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Tag_Cloud\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-tag-cloud.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Tag_Cloud\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-tag-cloud.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Tag_Cloud\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-tag-cloud.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Tag_Cloud\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-tag-cloud.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Tag_Cloud\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-tag-cloud.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:_filter_gallery_shortcode_attrs\\(\\) has parameter \\$attrs with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:_filter_gallery_shortcode_attrs\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:_register_one\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:enqueue_admin_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:enqueue_preview_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:form\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:inject_video_max_width_style\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:is_legacy_instance\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:render_control_template_scripts\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:update\\(\\) has parameter \\$new_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:update\\(\\) has parameter \\$old_instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:update\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:widget\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:widget\\(\\) has parameter \\$args with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Method WP_Widget_Text\\:\\:widget\\(\\) has parameter \\$instance with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-includes/widgets/class-wp-widget-text.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function login_footer\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-login.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function login_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-login.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_login_viewport_meta\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-login.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wp_shake_js\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-login.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function confirm_another_blog_signup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function confirm_another_blog_signup\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function confirm_blog_signup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function confirm_blog_signup\\(\\) has parameter \\$meta with no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function confirm_user_signup\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function do_signup_header\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function show_blog_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function show_user_form\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function signup_another_blog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function signup_blog\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function signup_user\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function validate_blog_form\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function validate_user_form\\(\\) return type has no value type specified in iterable type array\\.$#', + 'identifier' => 'missingType.iterableValue', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function wpmu_signup_stylesheet\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-signup.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function trackback_response\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/wp-trackback.php', +]; +$ignoreErrors[] = [ + 'message' => '#^Function logIO\\(\\) has no return type specified\\.$#', + 'identifier' => 'missingType.return', + 'count' => 1, + 'path' => __DIR__ . '/../../../src/xmlrpc.php', +]; + +return ['parameters' => ['ignoreErrors' => $ignoreErrors]]; diff --git a/tests/phpstan/generate-baselines.sh b/tests/phpstan/generate-baselines.sh new file mode 100755 index 0000000000000..0d2e69c128b61 --- /dev/null +++ b/tests/phpstan/generate-baselines.sh @@ -0,0 +1,308 @@ +#!/bin/bash +# generate-baselines.sh +# Generate PHPStan baseline files for each level + +# Determine MAX_LEVEL from configuration files +MAX_LEVEL="" +if [[ -f "phpstan.neon" ]]; then + MAX_LEVEL=$(sed -n 's/^[[:space:]]*level:[[:space:]]*\([0-9]\+\)/\1/p' "phpstan.neon" | head -n 1) +fi + +if [[ -z "$MAX_LEVEL" ]] && [[ -f "phpstan.neon.dist" ]]; then + MAX_LEVEL=$(sed -n 's/^[[:space:]]*level:[[:space:]]*\([0-9]\+\)/\1/p' "phpstan.neon.dist" | head -n 1) +fi + +MAX_LEVEL=${MAX_LEVEL:-0} + +if (( MAX_LEVEL == 0 )); then + echo "Notice: Maximum level is 0. No per-level baselines to generate for levels 1 and above." + exit 0 +fi + +LEVEL_START="" +LEVEL_END="" +declare -a BEFORE_COUNTS +declare -a AFTER_COUNTS + +usage() { + cat <&2 + exit 1 +} + +validate_level() { + local lvl="$1" + if ! [[ "$lvl" =~ ^[0-9]+$ ]] || (( lvl < 1 || lvl > MAX_LEVEL )); then + error_exit "Level must be between 1 and ${MAX_LEVEL} (got: $lvl)" + fi +} + +check_prerequisites() { + if [[ ! -x "vendor/bin/phpstan" ]]; then + echo "Error: vendor/bin/phpstan not found or not executable." >&2 + echo "Action: Run 'composer install' to install PHPStan." >&2 + exit 2 + fi + + if [[ ! -f "phpstan.neon.dist" ]]; then + echo "Error: phpstan.neon.dist not found." >&2 + exit 3 + fi + + if [[ ! -f "tests/phpstan/base.neon" ]]; then + echo "Error: tests/phpstan/base.neon not found." >&2 + exit 4 + fi + + if [[ ! -d "tests/phpstan/baseline" ]]; then + mkdir -p "tests/phpstan/baseline" + echo "Created missing directory: tests/phpstan/baseline/" + fi +} + +# Count errors in a baseline PHP file by summing 'count' => N entries +count_baseline_errors() { + local file="$1" + local count=0 + + if [[ -f "$file" ]]; then + count=$(grep -E "'count'[[:space:]]*=>[[:space:]]*[0-9]+" "$file" 2>/dev/null | \ + grep -oE '[0-9]+' | \ + awk '{s+=$1} END {print s+0}') + fi + + echo "$count" +} + +capture_before_counts() { + for lvl in $(seq $LEVEL_START $LEVEL_END); do + local file="tests/phpstan/baseline/level-${lvl}.php" + BEFORE_COUNTS[$lvl]=$(count_baseline_errors "$file") + done +} + +capture_after_counts() { + for lvl in $(seq $LEVEL_START $LEVEL_END); do + local file="tests/phpstan/baseline/level-${lvl}.php" + AFTER_COUNTS[$lvl]=$(count_baseline_errors "$file") + done +} + +display_summary_table() { + echo "" + echo "==============================================" + echo "BASELINE GENERATION SUMMARY" + echo "==============================================" + echo "" + printf "%-10s %12s %12s %12s\n" "Level" "Before" "After" "Change" + printf "%-10s %12s %12s %12s\n" "-----" "------" "-----" "------" + + local total_before=0 + local total_after=0 + + for lvl in $(seq $LEVEL_START $LEVEL_END); do + local before=${BEFORE_COUNTS[$lvl]:-0} + local after=${AFTER_COUNTS[$lvl]:-0} + local change=$((after - before)) + local change_str="+$change" + + if [[ $change -lt 0 ]]; then + change_str="$change" + elif [[ $change -eq 0 ]]; then + change_str="0" + fi + + printf "%-10s %12s %12s %12s\n" "Level $lvl" "$before" "$after" "$change_str" + total_before=$((total_before + before)) + total_after=$((total_after + after)) + done + + printf "%-10s %12s %12s %12s\n" "-----" "------" "-----" "------" + + local total_change=$((total_after - total_before)) + local total_change_str="+$total_change" + if [[ $total_change -lt 0 ]]; then + total_change_str="$total_change" + elif [[ $total_change -eq 0 ]]; then + total_change_str="0" + fi + + printf "%-10s %12s %12s %12s\n" "TOTAL" "$total_before" "$total_after" "$total_change_str" + + if [[ "$GENERATE" == "true" ]]; then + echo "" + echo "Generated files:" + for lvl in $(seq $LEVEL_START $LEVEL_END); do + echo " tests/phpstan/baseline/level-${lvl}.php" + done + echo "" + echo "If satisfied, commit the generated files to version control." + fi +} + +# Parse arguments +if [[ $# -eq 0 ]]; then + usage + exit 1 +fi + +GENERATE=true + +while [[ $# -gt 0 ]]; do + case "$1" in + --all) + LEVEL_START=1 + LEVEL_END=$MAX_LEVEL + shift + ;; + --level=*) + LEVEL_START="${1#--level=}" + LEVEL_END="$LEVEL_START" + validate_level "$LEVEL_START" + shift + ;; + --from=*) + LEVEL_START="${1#--from=}" + validate_level "$LEVEL_START" + shift + ;; + --to=*) + LEVEL_END="${1#--to=}" + validate_level "$LEVEL_END" + shift + ;; + --summary-only) + GENERATE=false + shift + ;; + --help) + usage + exit 0 + ;; + *) + usage + error_exit "Unknown argument: $1" + ;; + esac +done + +# If no level range specified, default to all levels +if [[ -z "$LEVEL_START" || -z "$LEVEL_END" ]]; then + LEVEL_START=1 + LEVEL_END=$MAX_LEVEL +fi + +if [[ -n "$LEVEL_START" && -n "$LEVEL_END" ]]; then + if (( LEVEL_START > LEVEL_END )); then + error_exit "LEVEL_START ($LEVEL_START) cannot be greater than LEVEL_END ($LEVEL_END)" + fi +fi + +check_prerequisites + +echo "Capturing current baseline error counts..." +capture_before_counts + +generate_temp_config() { + local level="$1" + local temp_file=".phpstan-temp-${level}.neon" + local higher_level + + cp phpstan.neon.dist "$temp_file" + + # Comment out baseline includes for this level and higher (N through MAX_LEVEL) + higher_level=$level + while (( higher_level <= MAX_LEVEL )); do + sed -i "s|^\([[:space:]]*\)- tests/phpstan/baseline/level-${higher_level}\.php$|\1# - tests/phpstan/baseline/level-${higher_level}.php|" "$temp_file" + ((higher_level++)) + done + + # Change parameters.level to target level + sed -i "s/^\([[:space:]]*\)level: [0-9]\+$/\1level: ${level}/" "$temp_file" + + # Comment out ignoreErrors entries for levels higher than target (POSIX-compliant awk) + awk -v target_level="$level" ' + BEGIN { current_level = 0; in_ignore = 0; commenting = 0 } + /^[[:space:]]*ignoreErrors:/ { in_ignore = 1 } + /^[[:space:]]*parameters:/ && in_ignore { in_ignore = 0; commenting = 0 } + in_ignore && /^[[:space:]]*# Level [0-9]+:/ { + if (match($0, /[0-9]+/)) { + current_level = substr($0, RSTART, RLENGTH) + 0 + commenting = (current_level > target_level) ? 1 : 0 + } + } + commenting && !/^[[:space:]]*# Level [0-9]+:/ { + print "# " $0 + next + } + { print } + ' "$temp_file" > "${temp_file}.tmp" && mv "${temp_file}.tmp" "$temp_file" + + echo "$temp_file" +} + +run_phpstan() { + local level="$1" + local config_path="$2" + local baseline_file="tests/phpstan/baseline/level-${level}.php" + + echo "" + echo "=== Generating baseline for level ${level} ===" + + set +e + vendor/bin/phpstan analyse -vvv --memory-limit=2G --configuration="$config_path" --generate-baseline="$baseline_file" + local exit_code=$? + set -e + + if [[ $exit_code -ne 0 ]]; then + echo "Error: PHPStan failed at level ${level} with exit code ${exit_code}" >&2 + return 1 + fi + + if [[ ! -f "$baseline_file" ]]; then + echo "Error: Baseline file was not created at ${baseline_file}" >&2 + return 1 + fi + + echo "Successfully generated: ${baseline_file}" +} + +cleanup_temp_files() { + rm -f .phpstan-temp-*.neon +} +trap cleanup_temp_files EXIT INT TERM + +# Main loop +FAILED_LEVELS="" +if [[ "$GENERATE" == "true" ]]; then + for level in $(seq $LEVEL_START $LEVEL_END); do + config=$(generate_temp_config $level) + if ! run_phpstan $level "$config"; then + FAILED_LEVELS="$FAILED_LEVELS $level" + fi + rm -f "$config" + done +fi + +capture_after_counts +display_summary_table + +if [[ -n "$FAILED_LEVELS" ]]; then + echo "" >&2 + echo "Error: Generation failed for levels:$FAILED_LEVELS" >&2 + exit 1 +fi + +exit 0