diff --git a/core/lib/Drupal/Core/Config/Schema/SchemaCheckTrait.php b/core/lib/Drupal/Core/Config/Schema/SchemaCheckTrait.php
index 9d5ff5a3e4ec61b6101b4b32d85f88c4e93f4725..1ebd77fdafc7466a1ce43a59852dea43c2fdbede 100644
--- a/core/lib/Drupal/Core/Config/Schema/SchemaCheckTrait.php
+++ b/core/lib/Drupal/Core/Config/Schema/SchemaCheckTrait.php
@@ -41,7 +41,7 @@ trait SchemaCheckTrait {
    * path segment can use a wildcard (`*`) to indicate any value for that
    * segment should be accepted for this property path to be ignored.
    *
-   * @var \string[][]
+   * @var array<string, array<string, array<int, string>>>
    */
   protected static array $ignoredPropertyPaths = [
     'search.page.*' => [
diff --git a/core/lib/Drupal/Core/Entity/EntityViewBuilder.php b/core/lib/Drupal/Core/Entity/EntityViewBuilder.php
index dc617f650bc55d751967d45b3e85d03550376d8a..a35f9be9ad233b5b92e18167d871a5d920dfcd23 100644
--- a/core/lib/Drupal/Core/Entity/EntityViewBuilder.php
+++ b/core/lib/Drupal/Core/Entity/EntityViewBuilder.php
@@ -494,7 +494,7 @@ public function viewFieldItem(FieldItemInterface $item, $display = []) {
   /**
    * Gets an EntityViewDisplay for rendering an individual field.
    *
-   * @param \Drupal\Core\Entity\EntityInterface $entity
+   * @param \Drupal\Core\Entity\FieldableEntityInterface $entity
    *   The entity.
    * @param string $field_name
    *   The field name.
diff --git a/core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php b/core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php
index 396227525506f381e4a37bd453e28476b95ae2d0..c6327af7e3d40d6a316a98697b1ba7ec01a46091 100644
--- a/core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php
+++ b/core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php
@@ -57,7 +57,7 @@ public function getUri() {
    *
    * @param string $uri
    *   A string containing the URI to the file to open.
-   * @param int $mode
+   * @param string $mode
    *   The file mode, only strict readonly modes are supported.
    * @param int $options
    *   A bit mask of STREAM_USE_PATH and STREAM_REPORT_ERRORS.
diff --git a/core/modules/comment/tests/src/Functional/CommentTestBase.php b/core/modules/comment/tests/src/Functional/CommentTestBase.php
index f2c94ac2c86457256b5d99a36eb1935802eafaaf..cb6bfec05fd70aa9b24d5bc492a57f1763a39235 100644
--- a/core/modules/comment/tests/src/Functional/CommentTestBase.php
+++ b/core/modules/comment/tests/src/Functional/CommentTestBase.php
@@ -108,7 +108,7 @@ protected function setUp(): void {
    *   Comment body.
    * @param string $subject
    *   Comment subject.
-   * @param string $contact
+   * @param null|true|array $contact
    *   Set to NULL for no contact info, TRUE to ignore success checking, and
    *   array of values to set contact info.
    * @param string $field_name
@@ -327,9 +327,9 @@ protected function setCommentsPerPage($number, $field_name = 'comment') {
    *
    * @param string $name
    *   Name of variable.
-   * @param string $value
+   * @param string|int $value
    *   Value of variable.
-   * @param string $message
+   * @param string|\Stringable $message
    *   Status message to display.
    * @param string $field_name
    *   (optional) Field name through which the comment should be posted.
diff --git a/core/modules/datetime/tests/src/Functional/DateTestBase.php b/core/modules/datetime/tests/src/Functional/DateTestBase.php
index e58f8582a25324a6ff5d11a0079c656eb3878881..6b128598a944d6a50758e55fe012bfb740d6f6e6 100644
--- a/core/modules/datetime/tests/src/Functional/DateTestBase.php
+++ b/core/modules/datetime/tests/src/Functional/DateTestBase.php
@@ -156,7 +156,7 @@ protected function createField() {
   /**
    * Renders an entity_test and sets the output in the internal browser.
    *
-   * @param int $id
+   * @param string|int $id
    *   The entity_test ID to render.
    * @param string $view_mode
    *   (optional) The view mode to use for rendering. Defaults to 'full'.
diff --git a/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php b/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php
index d220c5becbc6f163c8ebabc6f79d7620d8ba55b3..e77f671ca449c50f9ae9f7fcc3f33ebe3b784e8d 100644
--- a/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php
+++ b/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php
@@ -123,7 +123,7 @@ public function getId() {
   /**
    * Whether this ResourceIdentifier has an arity.
    *
-   * @return int
+   * @return bool
    *   TRUE if the ResourceIdentifier has an arity, FALSE otherwise.
    */
   public function hasArity() {
diff --git a/core/modules/jsonapi/tests/src/Functional/JsonApiRegressionTest.php b/core/modules/jsonapi/tests/src/Functional/JsonApiRegressionTest.php
index ba7bd148946dea01594b9d4d59f2afc8e2faa30a..04d1f706ae09f372cb151ad6cd75f5f24277df22 100644
--- a/core/modules/jsonapi/tests/src/Functional/JsonApiRegressionTest.php
+++ b/core/modules/jsonapi/tests/src/Functional/JsonApiRegressionTest.php
@@ -342,7 +342,7 @@ public function testThatRoutesAreRebuiltAfterDataModelChangesFromIssue2984886():
     $response = $this->request('GET', Url::fromUri('internal:/jsonapi/node/dog'), $request_options);
     $this->assertSame(200, $response->getStatusCode());
 
-    $this->createEntityReferenceField('node', 'dog', 'field_test', NULL, 'node');
+    $this->createEntityReferenceField('node', 'dog', 'field_test', '', 'node');
     \Drupal::service('router.builder')->rebuildIfNeeded();
 
     $dog = Node::create(['type' => 'dog', 'title' => 'retriever']);
@@ -351,7 +351,7 @@ public function testThatRoutesAreRebuiltAfterDataModelChangesFromIssue2984886():
     $response = $this->request('GET', Url::fromUri('internal:/jsonapi/node/dog/' . $dog->uuid() . '/field_test'), $request_options);
     $this->assertSame(200, $response->getStatusCode());
 
-    $this->createEntityReferenceField('node', 'cat', 'field_test', NULL, 'node');
+    $this->createEntityReferenceField('node', 'cat', 'field_test', '', 'node');
     \Drupal::service('router.builder')->rebuildIfNeeded();
 
     $cat = Node::create(['type' => 'cat', 'title' => 'E. Napoleon']);
diff --git a/core/modules/layout_builder/src/LayoutBuilderHighlightTrait.php b/core/modules/layout_builder/src/LayoutBuilderHighlightTrait.php
index 5c3e53c7b5546fce5c21c31f3b1836566253a7ff..af0b2b7760f2f41bfc4033eb368f349924b815bd 100644
--- a/core/modules/layout_builder/src/LayoutBuilderHighlightTrait.php
+++ b/core/modules/layout_builder/src/LayoutBuilderHighlightTrait.php
@@ -10,7 +10,7 @@ trait LayoutBuilderHighlightTrait {
   /**
    * Provides the ID used to highlight the active Layout Builder UI element.
    *
-   * @param string $delta
+   * @param int $delta
    *   The section the block is in.
    * @param string $region
    *   The section region in which the block is placed.
@@ -38,7 +38,7 @@ protected function blockUpdateHighlightId($uuid) {
   /**
    * Provides the ID used to highlight the active Layout Builder UI element.
    *
-   * @param string $delta
+   * @param int $delta
    *   The location of the section.
    *
    * @return string
@@ -51,7 +51,7 @@ protected function sectionAddHighlightId($delta) {
   /**
    * Provides the ID used to highlight the active Layout Builder UI element.
    *
-   * @param string $delta
+   * @param int $delta
    *   The location of the section.
    *
    * @return string
diff --git a/core/modules/menu_link_content/tests/src/Kernel/Migrate/MigrateMenuLinkTestTrait.php b/core/modules/menu_link_content/tests/src/Kernel/Migrate/MigrateMenuLinkTestTrait.php
index a7ca5e86c9123d2398381eaf095f642ce9a6c17d..32a0747979ee11407bad5fac7b0d583bb83f2324 100644
--- a/core/modules/menu_link_content/tests/src/Kernel/Migrate/MigrateMenuLinkTestTrait.php
+++ b/core/modules/menu_link_content/tests/src/Kernel/Migrate/MigrateMenuLinkTestTrait.php
@@ -15,7 +15,7 @@ trait MigrateMenuLinkTestTrait {
   /**
    * Asserts various aspects of a menu link entity.
    *
-   * @param string $id
+   * @param int $id
    *   The link ID.
    * @param string $langcode
    *   The language of the menu link.
@@ -23,7 +23,7 @@ trait MigrateMenuLinkTestTrait {
    *   The expected title of the link.
    * @param string $menu
    *   The expected ID of the menu to which the link will belong.
-   * @param string $description
+   * @param string|null $description
    *   The link's expected description.
    * @param bool $enabled
    *   Whether the link is enabled.
diff --git a/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkLocalizedTest.php b/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkLocalizedTest.php
index 69726693722d4f0bf238a83f1f9d4727b187b554..5e83ab710f705d74dec49a45bbac80697f608c41 100644
--- a/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkLocalizedTest.php
+++ b/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkLocalizedTest.php
@@ -51,7 +51,7 @@ protected function setUp(): void {
    */
   public function testMenuLinkLocalized(): void {
     // A localized menu link.
-    $this->assertEntity('463', 'fr', 'fr - Test 1', 'secondary-links', 'fr - Test menu link 1', TRUE, FALSE, [
+    $this->assertEntity(463, 'fr', 'fr - Test 1', 'secondary-links', 'fr - Test menu link 1', TRUE, FALSE, [
       'attributes' => ['title' => 'fr - Test menu link 1'],
       'langcode' => 'fr',
       'alter' => TRUE,
diff --git a/core/modules/menu_ui/tests/src/Traits/MenuUiTrait.php b/core/modules/menu_ui/tests/src/Traits/MenuUiTrait.php
index 6c41d7bf79fdc8390a2cc85f3e068204e166b1ef..7c2a56d56aaa1f886926bc6e3c05fcb9b87c5ba4 100644
--- a/core/modules/menu_ui/tests/src/Traits/MenuUiTrait.php
+++ b/core/modules/menu_ui/tests/src/Traits/MenuUiTrait.php
@@ -14,7 +14,7 @@ trait MenuUiTrait {
    *
    * @param array $expected_item
    *   Array containing properties to check.
-   * @param int $menu_plugin_id
+   * @param string $menu_plugin_id
    *   Menu item id.
    */
   protected function assertMenuLink(array $expected_item, $menu_plugin_id) {
diff --git a/core/modules/taxonomy/tests/src/Functional/RssTest.php b/core/modules/taxonomy/tests/src/Functional/RssTest.php
index 0f9b5fc63401558a910746fc8df7855620d9dbb3..5b3a30664cb339c80373a434c0cb0d9fdfa2d036 100644
--- a/core/modules/taxonomy/tests/src/Functional/RssTest.php
+++ b/core/modules/taxonomy/tests/src/Functional/RssTest.php
@@ -59,7 +59,7 @@ protected function setUp(): void {
       ],
       'auto_create' => TRUE,
     ];
-    $this->createEntityReferenceField('node', 'article', $this->fieldName, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
+    $this->createEntityReferenceField('node', 'article', $this->fieldName, '', 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
 
     /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */
     $display_repository = \Drupal::service('entity_display.repository');
diff --git a/core/modules/taxonomy/tests/src/Functional/TaxonomyTranslationTestTrait.php b/core/modules/taxonomy/tests/src/Functional/TaxonomyTranslationTestTrait.php
index 69e9023e1701a9afd541f713c3226589e5659251..459d5d883654ea54f61d667970c05b5a255eee2b 100644
--- a/core/modules/taxonomy/tests/src/Functional/TaxonomyTranslationTestTrait.php
+++ b/core/modules/taxonomy/tests/src/Functional/TaxonomyTranslationTestTrait.php
@@ -79,7 +79,7 @@ protected function setUpTermReferenceField() {
       ],
       'auto_create' => TRUE,
     ];
-    $this->createEntityReferenceField('node', 'article', $this->termFieldName, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
+    $this->createEntityReferenceField('node', 'article', $this->termFieldName, '', 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
     $field_storage = FieldStorageConfig::loadByName('node', $this->termFieldName);
     $field_storage->setTranslatable(FALSE);
     $field_storage->save();
diff --git a/core/modules/taxonomy/tests/src/Functional/TermIndexTest.php b/core/modules/taxonomy/tests/src/Functional/TermIndexTest.php
index 421483533db89d7da97326c7803f0cb46a0d799d..13d6e10853ac6efeab3e6b3a7dcfb7d6c489cf28 100644
--- a/core/modules/taxonomy/tests/src/Functional/TermIndexTest.php
+++ b/core/modules/taxonomy/tests/src/Functional/TermIndexTest.php
@@ -68,7 +68,7 @@ protected function setUp(): void {
       ],
       'auto_create' => TRUE,
     ];
-    $this->createEntityReferenceField('node', 'article', $this->fieldName1, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
+    $this->createEntityReferenceField('node', 'article', $this->fieldName1, '', 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
 
     /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */
     $display_repository = \Drupal::service('entity_display.repository');
@@ -84,7 +84,7 @@ protected function setUp(): void {
       ->save();
 
     $this->fieldName2 = $this->randomMachineName();
-    $this->createEntityReferenceField('node', 'article', $this->fieldName2, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
+    $this->createEntityReferenceField('node', 'article', $this->fieldName2, '', 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
 
     /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */
     $display_repository = \Drupal::service('entity_display.repository');
diff --git a/core/modules/taxonomy/tests/src/Functional/TermTest.php b/core/modules/taxonomy/tests/src/Functional/TermTest.php
index 9ea1ef323a3867c2f85df1de7bc0968ed2554f42..3d4d1b88f7812101ad2cacdb10407eecba25bf6b 100644
--- a/core/modules/taxonomy/tests/src/Functional/TermTest.php
+++ b/core/modules/taxonomy/tests/src/Functional/TermTest.php
@@ -70,7 +70,7 @@ protected function setUp(): void {
       ],
       'auto_create' => TRUE,
     ];
-    $this->createEntityReferenceField('node', 'article', $field_name, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
+    $this->createEntityReferenceField('node', 'article', $field_name, '', 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
     $this->field = FieldConfig::loadByName('node', 'article', $field_name);
 
     /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */
diff --git a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidUiTest.php b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidUiTest.php
index ff94a08ac1ba0aaffb48b32aa6714613de7cb287..3fc85872fb279347a8d01e4e83e47e6bd7d42ae8 100644
--- a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidUiTest.php
+++ b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidUiTest.php
@@ -164,7 +164,7 @@ public function testExposedFilter(): void {
 
     // Create the tag field itself.
     $field_name = 'taxonomy_tags';
-    $this->createEntityReferenceField('node', $node_type->id(), $field_name, NULL, 'taxonomy_term');
+    $this->createEntityReferenceField('node', $node_type->id(), $field_name, '', 'taxonomy_term');
 
     // Create 4 nodes: 1 without a term, 2 with the same term, and 1 with a
     // different term.
@@ -294,7 +294,7 @@ public function testExposedGroupedFilter(): void {
     // Create a content type with a taxonomy field.
     $this->drupalCreateContentType(['type' => 'article']);
     $field_name = 'field_views_testing_tags';
-    $this->createEntityReferenceField('node', 'article', $field_name, NULL, 'taxonomy_term');
+    $this->createEntityReferenceField('node', 'article', $field_name, '', 'taxonomy_term');
 
     $nodes = [];
     for ($i = 0; $i < 3; $i++) {
@@ -378,11 +378,11 @@ public function testFilterGrouping(): void {
 
     // Create the tag field itself.
     $field_name = 'taxonomy_tags';
-    $this->createEntityReferenceField('node', $node_type->id(), $field_name, NULL, 'taxonomy_term');
+    $this->createEntityReferenceField('node', $node_type->id(), $field_name, '', 'taxonomy_term');
 
     // Create the other tag field itself.
     $field_name2 = 'taxonomy_other_tags';
-    $this->createEntityReferenceField('node', $node_type->id(), $field_name2, NULL, 'taxonomy_term');
+    $this->createEntityReferenceField('node', $node_type->id(), $field_name2, '', 'taxonomy_term');
 
     // Create 5 nodes: 1 node without any tagging, 2 nodes tagged with 1 term,
     // 1 node with 2 tagged terms and 1 with other tags term.
diff --git a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermViewTest.php b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermViewTest.php
index 2a5c65d864af43e7aaaa218473bd10dc5e2534f5..0059646f023ddcbe0704e0ef7d4c588653667c3f 100644
--- a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermViewTest.php
+++ b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermViewTest.php
@@ -65,7 +65,7 @@ protected function setUp($import_test_views = TRUE, $modules = []): void {
       ],
       'auto_create' => TRUE,
     ];
-    $this->createEntityReferenceField('node', 'article', $this->fieldName1, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
+    $this->createEntityReferenceField('node', 'article', $this->fieldName1, '', 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
 
     /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */
     $display_repository = \Drupal::service('entity_display.repository');
diff --git a/core/modules/taxonomy/tests/src/Kernel/TokenReplaceTest.php b/core/modules/taxonomy/tests/src/Kernel/TokenReplaceTest.php
index bd98cc2a44b2e3fce568d515a4697a1fbffa4b96..ff6654753cf1a0aa3ae23c44e67167acc23467df 100644
--- a/core/modules/taxonomy/tests/src/Kernel/TokenReplaceTest.php
+++ b/core/modules/taxonomy/tests/src/Kernel/TokenReplaceTest.php
@@ -78,7 +78,7 @@ protected function setUp(): void {
       ],
       'auto_create' => TRUE,
     ];
-    $this->createEntityReferenceField('node', 'article', $this->fieldName, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
+    $this->createEntityReferenceField('node', 'article', $this->fieldName, '', 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
 
     /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */
     $display_repository = \Drupal::service('entity_display.repository');
diff --git a/core/modules/update/tests/src/Functional/UpdateTestTrait.php b/core/modules/update/tests/src/Functional/UpdateTestTrait.php
index 0caf99efe93d5f63b32edc4b29e191b3a81b0939..2e9187e489f3941e17b075e95ddee3d31b0c165e 100644
--- a/core/modules/update/tests/src/Functional/UpdateTestTrait.php
+++ b/core/modules/update/tests/src/Functional/UpdateTestTrait.php
@@ -18,7 +18,7 @@ trait UpdateTestTrait {
   /**
    * Sets information about installed extensions.
    *
-   * @param string[][] $installed_extensions
+   * @param array<string, array<string, string|bool>> $installed_extensions
    *   An array containing mocked installed extensions info. Keys are
    *   extension names, values are arrays containing key-value pairs that would
    *   be present in extensions' *.info.yml files.
diff --git a/core/modules/views/tests/src/Functional/DefaultViewsTest.php b/core/modules/views/tests/src/Functional/DefaultViewsTest.php
index 72f8370735bac0eea114b57d1ed656fcfd012b95..26a327c6ccff107a30c23ddb62b7b5b587231fa5 100644
--- a/core/modules/views/tests/src/Functional/DefaultViewsTest.php
+++ b/core/modules/views/tests/src/Functional/DefaultViewsTest.php
@@ -86,7 +86,7 @@ protected function setUp($import_test_views = TRUE, $modules = []): void {
       ],
       'auto_create' => TRUE,
     ];
-    $this->createEntityReferenceField('node', 'page', $field_name, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
+    $this->createEntityReferenceField('node', 'page', $field_name, '', 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
 
     // Create a time in the past for the archive.
     $time = \Drupal::time()->getRequestTime() - 3600;
diff --git a/core/modules/views/tests/src/Functional/Plugin/DisplayEntityReferenceTest.php b/core/modules/views/tests/src/Functional/Plugin/DisplayEntityReferenceTest.php
index 693f325b7211a1e55d726fbd6da592e95da2cf15..b454256243bd06ce23cbd5f49f9f6bc73e06d4d5 100644
--- a/core/modules/views/tests/src/Functional/Plugin/DisplayEntityReferenceTest.php
+++ b/core/modules/views/tests/src/Functional/Plugin/DisplayEntityReferenceTest.php
@@ -93,7 +93,7 @@ protected function setUp($import_test_views = TRUE, $modules = ['views_test_conf
 
     // Add an entity reference field to reference the same base table.
     $this->entityRefFieldName = 'field_test_entity_ref_entity_ref';
-    $this->createEntityReferenceField('entity_test', 'entity_test', $this->entityRefFieldName, NULL, 'entity_test');
+    $this->createEntityReferenceField('entity_test', 'entity_test', $this->entityRefFieldName, '', 'entity_test');
 
     // Create some entities to search. Add a common string to the name and
     // the text field in two entities so we can test that we can search in both.
diff --git a/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php b/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php
index 47c58a95bfdd45e4b57bcc9506b815b0aa23bbc8..a67ae3a46661baf0809cf3ffda4c9c50241dd22d 100644
--- a/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php
+++ b/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php
@@ -98,7 +98,7 @@ protected function setUp($import_test_views = TRUE, $modules = []): void {
       ],
       'auto_create' => TRUE,
     ];
-    $this->createEntityReferenceField('node', $this->nodeTypeWithTags->id(), $this->tagFieldName, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
+    $this->createEntityReferenceField('node', $this->nodeTypeWithTags->id(), $this->tagFieldName, '', 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
 
     /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */
     $display_repository = \Drupal::service('entity_display.repository');
diff --git a/core/tests/Drupal/FunctionalJavascriptTests/TableDrag/TableDragTest.php b/core/tests/Drupal/FunctionalJavascriptTests/TableDrag/TableDragTest.php
index dec8abda40381a6acdcad0b51db6c49ce637034e..a9350a1976e64525fbeb52f0f76f316aba756f53 100644
--- a/core/tests/Drupal/FunctionalJavascriptTests/TableDrag/TableDragTest.php
+++ b/core/tests/Drupal/FunctionalJavascriptTests/TableDrag/TableDragTest.php
@@ -548,7 +548,7 @@ protected function assertTableRow(NodeElement $row, string $id, int $weight, str
   /**
    * Finds a row in the test table by the row ID.
    *
-   * @param string $id
+   * @param string|int $id
    *   The ID of the row.
    * @param string $table_id
    *   The ID of the parent table. Defaults to 'tabledrag-test-table'.
diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryRelationshipTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryRelationshipTest.php
index ce1725c5a4b3e5f5ca030df702d5e61907c25b13..07e29ba3e9fa9a66182017e22d46c33845ca33d6 100644
--- a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryRelationshipTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryRelationshipTest.php
@@ -84,7 +84,7 @@ protected function setUp(): void {
       ],
       'auto_create' => TRUE,
     ];
-    $this->createEntityReferenceField('entity_test', 'test_bundle', $this->fieldName, NULL, 'taxonomy_term', 'default', $handler_settings);
+    $this->createEntityReferenceField('entity_test', 'test_bundle', $this->fieldName, '', 'taxonomy_term', 'default', $handler_settings);
 
     // Create two terms and also two accounts.
     for ($i = 0; $i <= 1; $i++) {