diff --git a/core/drupalci.yml b/core/drupalci.yml
index 94aa2ad22f..7b03111747 100644
--- a/core/drupalci.yml
+++ b/core/drupalci.yml
@@ -18,11 +18,11 @@ build:
         testgroups: '--all'
         suppress-deprecations: false
         halt-on-fail: false
-      run_tests.kernel:
-        types: 'PHPUnit-Kernel'
-        testgroups: '--all'
-        suppress-deprecations: false
-        halt-on-fail: false
+#      run_tests.kernel:
+#        types: 'PHPUnit-Kernel'
+#        testgroups: '--all'
+#        suppress-deprecations: false
+#        halt-on-fail: false
       run_tests.build:
         # Limit concurrency due to disk space concerns.
         concurrency: 15
@@ -30,17 +30,17 @@ build:
         testgroups: '--all'
         suppress-deprecations: false
         halt-on-fail: false
-      run_tests.functional:
-        types: 'PHPUnit-Functional'
-        testgroups: '--all'
-        suppress-deprecations: false
-        halt-on-fail: false
-      run_tests.javascript:
-        concurrency: 15
-        types: 'PHPUnit-FunctionalJavascript'
-        testgroups: '--all'
-        suppress-deprecations: false
-        halt-on-fail: false
-      # Run nightwatch testing.
-      # @see https://www.drupal.org/project/drupal/issues/2869825
-      nightwatchjs: {}
+#      run_tests.functional:
+#        types: 'PHPUnit-Functional'
+#        testgroups: '--all'
+#        suppress-deprecations: false
+#        halt-on-fail: false
+#      run_tests.javascript:
+#        concurrency: 15
+#        types: 'PHPUnit-FunctionalJavascript'
+#        testgroups: '--all'
+#        suppress-deprecations: false
+#        halt-on-fail: false
+#      # Run nightwatch testing.
+#      # @see https://www.drupal.org/project/drupal/issues/2869825
+#      nightwatchjs: {}
diff --git a/core/lib/Drupal/Component/Diff/Engine/DiffEngine.php b/core/lib/Drupal/Component/Diff/Engine/DiffEngine.php
index f8ec05fbbb..82f353253d 100644
--- a/core/lib/Drupal/Component/Diff/Engine/DiffEngine.php
+++ b/core/lib/Drupal/Component/Diff/Engine/DiffEngine.php
@@ -31,6 +31,16 @@ class DiffEngine {
 
   const MAX_XREF_LENGTH = 10000;
 
+  private $xchanged;
+  private $ychanged;
+  private $xv;
+  private $yv;
+  private $xind;
+  private $yind;
+  private $seq;
+  private $in_seq;
+  private $lcs;
+
   public function diff($from_lines, $to_lines) {
 
     $n_from = sizeof($from_lines);
diff --git a/core/lib/Drupal/Core/Extension/Extension.php b/core/lib/Drupal/Core/Extension/Extension.php
index 62977ba7ce..58fdde20a6 100644
--- a/core/lib/Drupal/Core/Extension/Extension.php
+++ b/core/lib/Drupal/Core/Extension/Extension.php
@@ -49,6 +49,11 @@ class Extension {
    */
   protected $root;
 
+  /**
+   * @var array
+   */
+  public $info;
+
   /**
    * Constructs a new Extension object.
    *
diff --git a/core/modules/block/src/Plugin/migrate/process/BlockTheme.php b/core/modules/block/src/Plugin/migrate/process/BlockTheme.php
index 408f83be67..74dab38800 100644
--- a/core/modules/block/src/Plugin/migrate/process/BlockTheme.php
+++ b/core/modules/block/src/Plugin/migrate/process/BlockTheme.php
@@ -31,6 +31,13 @@ class BlockTheme extends ProcessPluginBase implements ContainerFactoryPluginInte
    */
   protected $themeConfig;
 
+  /**
+   * List of themes available on the destination.
+   *
+   * @var array
+   */
+  protected array $themes;
+
   /**
    * Constructs a BlockTheme object.
    *
diff --git a/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestAccessBlock.php b/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestAccessBlock.php
index e558bcb90e..7e057039d1 100644
--- a/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestAccessBlock.php
+++ b/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestAccessBlock.php
@@ -20,6 +20,13 @@
  */
 class TestAccessBlock extends BlockBase implements ContainerFactoryPluginInterface {
 
+  /**
+   * The state.
+   *
+   * @var \Drupal\Core\State\StateInterface
+   */
+  protected StateInterface $state;
+
   /**
    * Tests the test access block.
    *
diff --git a/core/modules/book/tests/src/Functional/BookBreadcrumbTest.php b/core/modules/book/tests/src/Functional/BookBreadcrumbTest.php
index 0ecb7748a7..de5d3df9db 100644
--- a/core/modules/book/tests/src/Functional/BookBreadcrumbTest.php
+++ b/core/modules/book/tests/src/Functional/BookBreadcrumbTest.php
@@ -59,18 +59,6 @@ protected function setUp(): void {
       'edit own book content',
       'add content to books',
     ]);
-    $this->adminUser = $this->drupalCreateUser([
-      'create new books',
-      'create book content',
-      'edit any book content',
-      'delete any book content',
-      'add content to books',
-      'administer blocks',
-      'administer permissions',
-      'administer book outlines',
-      'administer content types',
-      'administer site configuration',
-    ]);
   }
 
   /**
diff --git a/core/modules/ckeditor/tests/src/Functional/CKEditorToolbarButtonTest.php b/core/modules/ckeditor/tests/src/Functional/CKEditorToolbarButtonTest.php
index a76b5b8b2f..a427817104 100644
--- a/core/modules/ckeditor/tests/src/Functional/CKEditorToolbarButtonTest.php
+++ b/core/modules/ckeditor/tests/src/Functional/CKEditorToolbarButtonTest.php
@@ -6,6 +6,7 @@
 use Drupal\editor\Entity\Editor;
 use Drupal\Tests\BrowserTestBase;
 use Drupal\Component\Serialization\Json;
+use Drupal\user\Entity\User;
 
 /**
  * Tests CKEditor toolbar buttons when the language direction is RTL.
@@ -26,6 +27,13 @@ class CKEditorToolbarButtonTest extends BrowserTestBase {
    */
   protected $defaultTheme = 'stark';
 
+  /**
+   * The admin user.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $adminUser;
+
   /**
    * {@inheritdoc}
    */
@@ -45,7 +53,7 @@ protected function setUp(): void {
     ])->save();
 
     // Create a new user with admin rights.
-    $this->admin_user = $this->drupalCreateUser([
+    $this->adminUser = $this->drupalCreateUser([
       'administer languages',
       'access administration pages',
       'administer site configuration',
@@ -57,7 +65,7 @@ protected function setUp(): void {
    * Method tests CKEditor image buttons.
    */
   public function testImageButtonDisplay() {
-    $this->drupalLogin($this->admin_user);
+    $this->drupalLogin($this->adminUser);
 
     // Install the Arabic language (which is RTL) and configure as the default.
     $edit = [];
diff --git a/core/modules/ckeditor5/tests/src/Functional/AddedStylesheetsTest.php b/core/modules/ckeditor5/tests/src/Functional/AddedStylesheetsTest.php
index 3343462bbe..e7657a2419 100644
--- a/core/modules/ckeditor5/tests/src/Functional/AddedStylesheetsTest.php
+++ b/core/modules/ckeditor5/tests/src/Functional/AddedStylesheetsTest.php
@@ -7,6 +7,7 @@
 use Drupal\filter\Entity\FilterFormat;
 use Drupal\Tests\BrowserTestBase;
 use Drupal\user\RoleInterface;
+use Drupal\user\Entity\User;
 use Symfony\Component\Validator\ConstraintViolation;
 
 /**
@@ -29,6 +30,20 @@ class AddedStylesheetsTest extends BrowserTestBase {
    */
   protected $defaultTheme = 'stark';
 
+  /**
+   * The editor user.
+   *
+   * @var \Drupal\editor\Entity\Editor
+   */
+  protected Editor $editor;
+
+  /**
+   * The admin user.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $adminUser;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/ckeditor5/tests/src/Functional/CKEditor5QuickEditLibraryTest.php b/core/modules/ckeditor5/tests/src/Functional/CKEditor5QuickEditLibraryTest.php
index 2a55c85017..513f6af515 100644
--- a/core/modules/ckeditor5/tests/src/Functional/CKEditor5QuickEditLibraryTest.php
+++ b/core/modules/ckeditor5/tests/src/Functional/CKEditor5QuickEditLibraryTest.php
@@ -7,6 +7,7 @@
 use Drupal\filter\Entity\FilterFormat;
 use Drupal\Tests\BrowserTestBase;
 use Drupal\user\RoleInterface;
+use Drupal\user\Entity\User;
 use Symfony\Component\Validator\ConstraintViolation;
 
 /**
@@ -31,6 +32,13 @@ class CKEditor5QuickEditLibraryTest extends BrowserTestBase {
    */
   protected $defaultTheme = 'stark';
 
+  /**
+   * The admin user.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $adminUser;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/ckeditor5/tests/src/Functional/MediaEntityMetadataApiTest.php b/core/modules/ckeditor5/tests/src/Functional/MediaEntityMetadataApiTest.php
index 7efd90e2b7..6d555fc5b7 100644
--- a/core/modules/ckeditor5/tests/src/Functional/MediaEntityMetadataApiTest.php
+++ b/core/modules/ckeditor5/tests/src/Functional/MediaEntityMetadataApiTest.php
@@ -14,6 +14,7 @@
 use Drupal\Tests\media\Traits\MediaTypeCreationTrait;
 use Drupal\Tests\TestFileCreationTrait;
 use Drupal\user\RoleInterface;
+use Drupal\user\Entity\User;
 use Symfony\Component\Validator\ConstraintViolation;
 
 /**
@@ -66,6 +67,13 @@ class MediaEntityMetadataApiTest extends BrowserTestBase {
    */
   protected $editor;
 
+  /**
+   * The admin user.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $adminUser;
+
   /**
    * @var \Drupal\Component\Uuid\UuidInterface
    */
diff --git a/core/modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5FragmentLinkTest.php b/core/modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5FragmentLinkTest.php
index 9cf564ef5e..b382a36cde 100644
--- a/core/modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5FragmentLinkTest.php
+++ b/core/modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5FragmentLinkTest.php
@@ -11,6 +11,7 @@
 use Drupal\node\Entity\NodeType;
 use Drupal\Tests\TestFileCreationTrait;
 use Drupal\user\RoleInterface;
+use Drupal\user\UserInterface;
 
 /**
  * Tests that the fragment link points to CKEditor 5.
@@ -32,6 +33,13 @@ class CKEditor5FragmentLinkTest extends WebDriverTestBase {
    */
   protected static $modules = ['node', 'ckeditor5'];
 
+  /**
+   * The admin user.
+   *
+   * @var \Drupal\user\UserInterface
+   */
+  protected UserInterface $account;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5ToolbarTest.php b/core/modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5ToolbarTest.php
index aa2dbd1471..3290ebc528 100644
--- a/core/modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5ToolbarTest.php
+++ b/core/modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5ToolbarTest.php
@@ -7,6 +7,7 @@
 use Drupal\ckeditor5\Plugin\Editor\CKEditor5;
 use Drupal\editor\Entity\Editor;
 use Drupal\filter\Entity\FilterFormat;
+use Drupal\user\UserInterface;
 use Symfony\Component\Validator\ConstraintViolation;
 
 /**
@@ -24,6 +25,13 @@ class CKEditor5ToolbarTest extends CKEditor5TestBase {
     'toolbar',
   ];
 
+  /**
+   * The admin user.
+   *
+   * @var \Drupal\user\UserInterface
+   */
+  protected UserInterface $user;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php b/core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php
index b8200c1c7f..786fdae53b 100644
--- a/core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php
+++ b/core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php
@@ -15,6 +15,21 @@
  */
 class StatisticsLastCommentName extends FieldPluginBase {
 
+  /**
+   * @var mixed
+   */
+  protected $user_table;
+
+  /**
+   * @var string
+   */
+  protected $user_field;
+
+  /**
+   * @var string
+   */
+  public $uid;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/comment/src/Plugin/views/field/StatisticsLastUpdated.php b/core/modules/comment/src/Plugin/views/field/StatisticsLastUpdated.php
index a3788e0b53..6a0db41b12 100644
--- a/core/modules/comment/src/Plugin/views/field/StatisticsLastUpdated.php
+++ b/core/modules/comment/src/Plugin/views/field/StatisticsLastUpdated.php
@@ -13,6 +13,11 @@
  */
 class StatisticsLastUpdated extends Date {
 
+  /**
+   * @var mixed
+   */
+  protected $node_table;
+
   public function query() {
     $this->ensureMyTable();
     $this->node_table = $this->query->ensureTable('node_field_data', $this->relationship);
diff --git a/core/modules/comment/src/Plugin/views/filter/StatisticsLastUpdated.php b/core/modules/comment/src/Plugin/views/filter/StatisticsLastUpdated.php
index 046edf4c3f..68065880e8 100644
--- a/core/modules/comment/src/Plugin/views/filter/StatisticsLastUpdated.php
+++ b/core/modules/comment/src/Plugin/views/filter/StatisticsLastUpdated.php
@@ -13,6 +13,11 @@
  */
 class StatisticsLastUpdated extends Date {
 
+  /**
+   * @var mixed
+   */
+  protected $node_table;
+
   public function query() {
     $this->ensureMyTable();
     $this->node_table = $this->query->ensureTable('node', $this->relationship);
diff --git a/core/modules/comment/src/Plugin/views/row/Rss.php b/core/modules/comment/src/Plugin/views/row/Rss.php
index 728afd6f8d..fe9edc8992 100644
--- a/core/modules/comment/src/Plugin/views/row/Rss.php
+++ b/core/modules/comment/src/Plugin/views/row/Rss.php
@@ -29,6 +29,11 @@ class Rss extends RssPluginBase {
    */
   protected $base_field = 'cid';
 
+  /**
+   * @var string
+   */
+  protected $field_alias;
+
   /**
    * @var \Drupal\comment\CommentInterface[]
    */
diff --git a/core/modules/comment/src/Plugin/views/sort/StatisticsLastCommentName.php b/core/modules/comment/src/Plugin/views/sort/StatisticsLastCommentName.php
index 48f556e68a..734349a022 100644
--- a/core/modules/comment/src/Plugin/views/sort/StatisticsLastCommentName.php
+++ b/core/modules/comment/src/Plugin/views/sort/StatisticsLastCommentName.php
@@ -14,6 +14,16 @@
  */
 class StatisticsLastCommentName extends SortPluginBase {
 
+  /**
+   * @var mixed
+   */
+  protected $user_table;
+
+  /**
+   * @var string
+   */
+  protected $user_field;
+
   public function query() {
     $this->ensureMyTable();
     $definition = [
diff --git a/core/modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php b/core/modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php
index 0f9c055ec9..faeb3cbb97 100644
--- a/core/modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php
+++ b/core/modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php
@@ -13,6 +13,16 @@
  */
 class StatisticsLastUpdated extends Date {
 
+  /**
+   * @var mixed
+   */
+  protected $node_table;
+
+  /**
+   * @var string
+   */
+  protected $field_alias;
+
   public function query() {
     $this->ensureMyTable();
     $this->node_table = $this->query->ensureTable('node', $this->relationship);
diff --git a/core/modules/comment/tests/src/Functional/CommentTranslationUITest.php b/core/modules/comment/tests/src/Functional/CommentTranslationUITest.php
index 5aae524c71..09b92f2da6 100644
--- a/core/modules/comment/tests/src/Functional/CommentTranslationUITest.php
+++ b/core/modules/comment/tests/src/Functional/CommentTranslationUITest.php
@@ -64,7 +64,6 @@ class CommentTranslationUITest extends ContentTranslationUITestBase {
 
   protected function setUp(): void {
     $this->entityTypeId = 'comment';
-    $this->nodeBundle = 'article';
     $this->bundle = 'comment_article';
     $this->testLanguageSelector = FALSE;
     $this->subject = $this->randomMachineName();
@@ -76,7 +75,7 @@ protected function setUp(): void {
    */
   public function setupBundle() {
     parent::setupBundle();
-    $this->drupalCreateContentType(['type' => $this->nodeBundle, 'name' => $this->nodeBundle]);
+    $this->drupalCreateContentType(['type' => 'article', 'name' => 'article']);
     // Add a comment field to the article content type.
     $this->addDefaultCommentField('node', 'article', 'comment_article', CommentItemInterface::OPEN, 'comment_article');
     // Create a page content type.
diff --git a/core/modules/config/tests/src/Functional/TransformedConfigExportImportUITest.php b/core/modules/config/tests/src/Functional/TransformedConfigExportImportUITest.php
index e42a5888e6..196463d139 100644
--- a/core/modules/config/tests/src/Functional/TransformedConfigExportImportUITest.php
+++ b/core/modules/config/tests/src/Functional/TransformedConfigExportImportUITest.php
@@ -35,8 +35,7 @@ protected function setUp(): void {
       'import configuration',
       'synchronize configuration',
     ];
-    $this->webUser = $this->drupalCreateUser($permissions);
-    $this->drupalLogin($this->webUser);
+    $this->drupalLogin($this->drupalCreateUser($permissions));
 
     // Start off with the sync storage being the same as the active storage.
     $this->copyConfig($this->container->get('config.storage'), $this->container->get('config.storage.sync'));
diff --git a/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php b/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php
index 6c260ef930..75241c5225 100644
--- a/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php
+++ b/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php
@@ -7,6 +7,7 @@
 use Drupal\Core\Entity\EntityPublishedInterface;
 use Drupal\Core\Entity\EntityStorageException;
 use Drupal\Core\Language\LanguageInterface;
+use Drupal\Core\State\StateInterface;
 use Drupal\KernelTests\KernelTestBase;
 use Drupal\language\Entity\ConfigurableLanguage;
 use Drupal\node\Entity\Node;
@@ -56,6 +57,20 @@ class ContentModerationStateTest extends KernelTestBase {
    */
   protected $entityTypeManager;
 
+  /**
+   * The state object.
+   *
+   * @var \Drupal\Core\State\StateInterface
+   */
+  protected StateInterface $state;
+
+  /**
+   * The entity definition update manager.
+   *
+   * @var \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface
+   */
+  protected $entityDefinitionUpdateManager;
+
   /**
    * The ID of the revisionable entity type used in the tests.
    *
diff --git a/core/modules/datetime/tests/src/Functional/DateTestBase.php b/core/modules/datetime/tests/src/Functional/DateTestBase.php
index 2581b0eec5..60ca92bce6 100644
--- a/core/modules/datetime/tests/src/Functional/DateTestBase.php
+++ b/core/modules/datetime/tests/src/Functional/DateTestBase.php
@@ -140,7 +140,7 @@ protected function createField() {
     $this->displayOptions = [
       'type' => $formatter_type,
       'label' => 'hidden',
-      'settings' => ['format_type' => 'medium'] + $this->defaultSettings,
+      'settings' => ['format_type' => 'medium'],
     ];
     EntityViewDisplay::create([
       'targetEntityType' => $this->field->getTargetEntityTypeId(),
diff --git a/core/modules/datetime/tests/src/Kernel/Views/DateTimeHandlerTestBase.php b/core/modules/datetime/tests/src/Kernel/Views/DateTimeHandlerTestBase.php
index 0cb21d7b2b..5c414613dc 100644
--- a/core/modules/datetime/tests/src/Kernel/Views/DateTimeHandlerTestBase.php
+++ b/core/modules/datetime/tests/src/Kernel/Views/DateTimeHandlerTestBase.php
@@ -44,6 +44,13 @@ abstract class DateTimeHandlerTestBase extends ViewsKernelTestBase {
    */
   protected $nodes = [];
 
+  /**
+   * Column map.
+   *
+   * @var string[]
+   */
+  protected array $map;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/field/src/Entity/FieldStorageConfig.php b/core/modules/field/src/Entity/FieldStorageConfig.php
index c05caf084c..33bf071650 100644
--- a/core/modules/field/src/Entity/FieldStorageConfig.php
+++ b/core/modules/field/src/Entity/FieldStorageConfig.php
@@ -229,6 +229,13 @@ class FieldStorageConfig extends ConfigEntityBase implements FieldStorageConfigI
    */
   protected static $inDeletion = FALSE;
 
+  /**
+   * Copy of the field before changes.
+   *
+   * @var \Drupal\field\FieldStorageConfigInterface
+   */
+  public FieldStorageConfigInterface $original;
+
   /**
    * Constructs a FieldStorageConfig object.
    *
diff --git a/core/modules/field/tests/src/Functional/NestedFormTest.php b/core/modules/field/tests/src/Functional/NestedFormTest.php
index 7621b07e3a..b8e6596900 100644
--- a/core/modules/field/tests/src/Functional/NestedFormTest.php
+++ b/core/modules/field/tests/src/Functional/NestedFormTest.php
@@ -25,6 +25,21 @@ class NestedFormTest extends FieldTestBase {
    */
   protected $defaultTheme = 'stark';
 
+  /**
+   * @var array
+   */
+  protected array $fieldStorageSingle;
+
+  /**
+   * @var array
+   */
+  protected array $fieldStorageUnlimited;
+
+  /**
+   * @var array
+   */
+  protected array $field;
+
   protected function setUp(): void {
     parent::setUp();
 
diff --git a/core/modules/field/tests/src/Kernel/Entity/Update/SqlContentEntityStorageSchemaColumnTest.php b/core/modules/field/tests/src/Kernel/Entity/Update/SqlContentEntityStorageSchemaColumnTest.php
index b8d0cc4a4d..b44234c7d3 100644
--- a/core/modules/field/tests/src/Kernel/Entity/Update/SqlContentEntityStorageSchemaColumnTest.php
+++ b/core/modules/field/tests/src/Kernel/Entity/Update/SqlContentEntityStorageSchemaColumnTest.php
@@ -3,6 +3,7 @@
 namespace Drupal\Tests\field\Kernel\Entity\Update;
 
 use Drupal\Core\Entity\Exception\FieldStorageDefinitionUpdateForbiddenException;
+use Drupal\Core\State\StateInterface;
 use Drupal\entity_test\Entity\EntityTestRev;
 use Drupal\field\Entity\FieldConfig;
 use Drupal\field\Entity\FieldStorageConfig;
@@ -44,6 +45,20 @@ class SqlContentEntityStorageSchemaColumnTest extends KernelTestBase {
    */
   protected $fieldStorage;
 
+  /**
+   * The entity definition update manager.
+   *
+   * @var \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface
+   */
+  protected $entityDefinitionUpdateManager;
+
+  /**
+   * The state object.
+   *
+   * @var \Drupal\Core\State\StateInterface
+   */
+  protected StateInterface $state;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php b/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php
index e9eb783962..2636fea80e 100644
--- a/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php
+++ b/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php
@@ -44,6 +44,11 @@ abstract class FieldKernelTestBase extends KernelTestBase {
    */
   protected $fieldTestData;
 
+  /**
+   * @var string
+   */
+  protected string $entityId;
+
   /**
    * Set the default field storage backend for fields created during tests.
    */
diff --git a/core/modules/field/tests/src/Unit/Plugin/migrate/process/ProcessFieldTest.php b/core/modules/field/tests/src/Unit/Plugin/migrate/process/ProcessFieldTest.php
index 4088c02f66..bdd46c0c80 100644
--- a/core/modules/field/tests/src/Unit/Plugin/migrate/process/ProcessFieldTest.php
+++ b/core/modules/field/tests/src/Unit/Plugin/migrate/process/ProcessFieldTest.php
@@ -20,6 +20,31 @@
  */
 class ProcessFieldTest extends MigrateTestCase {
 
+  /**
+   * @var \Drupal\migrate_drupal\Plugin\MigrateFieldPluginManagerInterface
+   */
+  protected $fieldManager;
+
+  /**
+   * @var \Drupal\migrate_drupal\Plugin\MigrateFieldInterface
+   */
+  protected $fieldPlugin;
+
+  /**
+   * @var \Drupal\migrate\MigrateExecutable
+   */
+  protected $migrateExecutable;
+
+  /**
+   * @var \Drupal\migrate\Plugin\MigrationInterface
+   */
+  protected $migration;
+
+  /**
+   * @var \Drupal\migrate\Row
+   */
+  protected $row;
+
   /**
    * {@inheritdoc}
    */
@@ -57,7 +82,7 @@ public function testTransform($method, $value, $expected_value, $migrate_excepti
     if ($method) {
       $this->fieldPlugin->$method($this->row->reveal())->willReturn($expected_value);
     }
-    $this->plugin = new ProcessField(['method' => $method], $value, [], $this->fieldManager->reveal(), $this->migration->reveal());
+    $plugin = new ProcessField(['method' => $method], $value, [], $this->fieldManager->reveal(), $this->migration->reveal());
 
     if ($migrate_exception) {
       $this->expectException(MigrateException::class);
@@ -69,7 +94,7 @@ public function testTransform($method, $value, $expected_value, $migrate_excepti
       $this->fieldManager->getPluginIdFromFieldType()->willThrow($exception);
     }
 
-    $transformed_value = $this->plugin->transform($value, $this->migrateExecutable->reveal(), $this->row->reveal(), 'foo');
+    $transformed_value = $plugin->transform($value, $this->migrateExecutable->reveal(), $this->row->reveal(), 'foo');
     $this->assertSame($transformed_value, $expected_value);
   }
 
diff --git a/core/modules/field_ui/src/Plugin/Derivative/FieldUiLocalAction.php b/core/modules/field_ui/src/Plugin/Derivative/FieldUiLocalAction.php
index 533a911acf..13535d5fbf 100644
--- a/core/modules/field_ui/src/Plugin/Derivative/FieldUiLocalAction.php
+++ b/core/modules/field_ui/src/Plugin/Derivative/FieldUiLocalAction.php
@@ -16,6 +16,13 @@ class FieldUiLocalAction extends DeriverBase implements ContainerDeriverInterfac
 
   use StringTranslationTrait;
 
+  /**
+   * The route provider to load routes by name.
+   *
+   * @var \Drupal\Core\Routing\RouteProviderInterface
+   */
+  protected RouteProviderInterface $routeProvider;
+
   /**
    * The entity type manager.
    *
diff --git a/core/modules/field_ui/tests/src/Functional/ManageDisplayTest.php b/core/modules/field_ui/tests/src/Functional/ManageDisplayTest.php
index 864733e8b3..58582f0458 100644
--- a/core/modules/field_ui/tests/src/Functional/ManageDisplayTest.php
+++ b/core/modules/field_ui/tests/src/Functional/ManageDisplayTest.php
@@ -40,6 +40,16 @@ class ManageDisplayTest extends BrowserTestBase {
    */
   protected $defaultTheme = 'stark';
 
+  /**
+   * @var string
+   */
+  private $type;
+
+  /**
+   * @var string
+   */
+  private $vocabulary;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php b/core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php
index bf6ceb0612..deb0cea1c4 100644
--- a/core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php
+++ b/core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php
@@ -28,6 +28,13 @@
  */
 class FileWidget extends WidgetBase {
 
+  /**
+   * The element info manager.
+   *
+   * @var \Drupal\Core\Render\ElementInfoManagerInterface
+   */
+  protected ElementInfoManagerInterface $elementInfo;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/file/src/Plugin/migrate/process/d6/FieldFile.php b/core/modules/file/src/Plugin/migrate/process/d6/FieldFile.php
index 86987453de..81312d0d1a 100644
--- a/core/modules/file/src/Plugin/migrate/process/d6/FieldFile.php
+++ b/core/modules/file/src/Plugin/migrate/process/d6/FieldFile.php
@@ -17,6 +17,13 @@
  */
 class FieldFile extends ProcessPluginBase implements ContainerFactoryPluginInterface {
 
+  /**
+   * The current migration.
+   *
+   * @var \Drupal\migrate\Plugin\MigrationInterface
+   */
+  protected MigrationInterface $migration;
+
   /**
    * The migrate lookup service.
    *
diff --git a/core/modules/file/tests/src/Functional/FileUploadJsonCookieTest.php b/core/modules/file/tests/src/Functional/FileUploadJsonCookieTest.php
index 726b6fbffd..8bdaab9a60 100644
--- a/core/modules/file/tests/src/Functional/FileUploadJsonCookieTest.php
+++ b/core/modules/file/tests/src/Functional/FileUploadJsonCookieTest.php
@@ -32,4 +32,11 @@ class FileUploadJsonCookieTest extends FileUploadResourceTestBase {
    */
   protected static $auth = 'cookie';
 
+  /**
+   * Entity type ID for this storage.
+   *
+   * @var string
+   */
+  protected static $entityTypeId;
+
 }
diff --git a/core/modules/filter/src/Plugin/migrate/process/d6/FilterFormatPermission.php b/core/modules/filter/src/Plugin/migrate/process/d6/FilterFormatPermission.php
index 2e688aa71f..47c806a706 100644
--- a/core/modules/filter/src/Plugin/migrate/process/d6/FilterFormatPermission.php
+++ b/core/modules/filter/src/Plugin/migrate/process/d6/FilterFormatPermission.php
@@ -20,6 +20,13 @@
  */
 class FilterFormatPermission extends ProcessPluginBase implements ContainerFactoryPluginInterface {
 
+  /**
+   * The current migration.
+   *
+   * @var \Drupal\migrate\Plugin\MigrationInterface
+   */
+  protected MigrationInterface $migration;
+
   /**
    * The migrate lookup service.
    *
diff --git a/core/modules/filter/tests/src/Functional/FilterHtmlImageSecureTest.php b/core/modules/filter/tests/src/Functional/FilterHtmlImageSecureTest.php
index 3d5e5ee756..71ba364eec 100644
--- a/core/modules/filter/tests/src/Functional/FilterHtmlImageSecureTest.php
+++ b/core/modules/filter/tests/src/Functional/FilterHtmlImageSecureTest.php
@@ -31,13 +31,6 @@ class FilterHtmlImageSecureTest extends BrowserTestBase {
    */
   protected $defaultTheme = 'stark';
 
-  /**
-   * An authenticated user.
-   *
-   * @var \Drupal\user\UserInterface
-   */
-  protected $webUser;
-
   protected function setUp(): void {
     parent::setUp();
 
@@ -63,20 +56,19 @@ protected function setUp(): void {
     $filtered_html_format->save();
 
     // Setup users.
-    $this->webUser = $this->drupalCreateUser([
+    $webUser = $this->drupalCreateUser([
       'access content',
       'access comments',
       'post comments',
       'skip comment approval',
       $filtered_html_format->getPermissionName(),
     ]);
-    $this->drupalLogin($this->webUser);
+    $this->drupalLogin($webUser);
 
     // Setup a node to comment and test on.
     $this->drupalCreateContentType(['type' => 'page', 'name' => 'Basic page']);
     // Add a comment field.
     $this->addDefaultCommentField('node', 'page');
-    $this->node = $this->drupalCreateNode();
   }
 
   /**
@@ -85,6 +77,8 @@ protected function setUp(): void {
   public function testImageSource() {
     global $base_url;
 
+    $node = $this->drupalCreateNode();
+
     $public_files_path = PublicStream::basePath();
 
     $http_base_url = preg_replace('/^https?/', 'http', $base_url);
@@ -142,7 +136,7 @@ public function testImageSource() {
     $edit = [
       'comment_body[0][value]' => implode("\n", $comment),
     ];
-    $this->drupalGet('node/' . $this->node->id());
+    $this->drupalGet('node/' . $node->id());
     $this->submitForm($edit, 'Save');
     foreach ($images as $image => $converted) {
       $found = FALSE;
diff --git a/core/modules/help_topics/src/Plugin/HelpSection/HelpTopicSection.php b/core/modules/help_topics/src/Plugin/HelpSection/HelpTopicSection.php
index 566aa1e3c9..e957d9295e 100644
--- a/core/modules/help_topics/src/Plugin/HelpSection/HelpTopicSection.php
+++ b/core/modules/help_topics/src/Plugin/HelpSection/HelpTopicSection.php
@@ -81,7 +81,7 @@ class HelpTopicSection extends HelpSectionPluginBase implements ContainerFactory
    *
    * @var \Drupal\Core\StringTranslation\TranslationManager
    */
-  protected $stringTranslation;
+  protected $translationManager;
 
   /**
    * Constructs a HelpTopicSection object.
diff --git a/core/modules/image/tests/src/Unit/ImageStyleTest.php b/core/modules/image/tests/src/Unit/ImageStyleTest.php
index 94dcc28979..eef2acb8a3 100644
--- a/core/modules/image/tests/src/Unit/ImageStyleTest.php
+++ b/core/modules/image/tests/src/Unit/ImageStyleTest.php
@@ -78,11 +78,11 @@ protected function getImageStyleMock($image_effect_id, $image_effect, $stubs = [
    */
   protected function setUp(): void {
     $this->entityTypeId = $this->randomMachineName();
-    $this->provider = $this->randomMachineName();
+    $provider = $this->randomMachineName();
     $this->entityType = $this->createMock('\Drupal\Core\Entity\EntityTypeInterface');
     $this->entityType->expects($this->any())
       ->method('getProvider')
-      ->will($this->returnValue($this->provider));
+      ->will($this->returnValue($provider));
     $this->entityTypeManager = $this->createMock('\Drupal\Core\Entity\EntityTypeManagerInterface');
     $this->entityTypeManager->expects($this->any())
       ->method('getDefinition')
diff --git a/core/modules/jsonapi/tests/src/Functional/RestJsonApiUnsupported.php b/core/modules/jsonapi/tests/src/Functional/RestJsonApiUnsupported.php
index 317550c40b..7c4608f3d9 100644
--- a/core/modules/jsonapi/tests/src/Functional/RestJsonApiUnsupported.php
+++ b/core/modules/jsonapi/tests/src/Functional/RestJsonApiUnsupported.php
@@ -65,7 +65,7 @@ protected function setUp(): void {
     parent::setUp();
 
     // Set up a HTTP client that accepts relative URLs.
-    $this->httpClient = $this->container->get('http_client_factory')
+    $this->container->get('http_client_factory')
       ->fromOptions(['base_uri' => $this->baseUrl]);
 
     // Create a "Camelids" node type.
diff --git a/core/modules/jsonapi/tests/src/Kernel/Controller/EntityResourceTest.php b/core/modules/jsonapi/tests/src/Kernel/Controller/EntityResourceTest.php
index f65593d0df..37a48691fe 100644
--- a/core/modules/jsonapi/tests/src/Kernel/Controller/EntityResourceTest.php
+++ b/core/modules/jsonapi/tests/src/Kernel/Controller/EntityResourceTest.php
@@ -76,6 +76,13 @@ class EntityResourceTest extends JsonapiKernelTestBase {
    */
   protected $node3;
 
+  /**
+   * A node with related nodes.
+   *
+   * @var \Drupal\node\Entity\Node
+   */
+  protected $node4;
+
   /**
    * A fake request.
    *
diff --git a/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php b/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
index c104fbea37..805877f51b 100644
--- a/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
+++ b/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
@@ -65,6 +65,13 @@ class JsonApiDocumentTopLevelNormalizerTest extends JsonapiKernelTestBase {
    */
   protected $node;
 
+  /**
+   * The node type.
+   *
+   * @var \Drupal\node\Entity\NodeType
+   */
+  protected $nodeType;
+
   /**
    * A user to normalize.
    *
@@ -72,6 +79,34 @@ class JsonApiDocumentTopLevelNormalizerTest extends JsonapiKernelTestBase {
    */
   protected $user;
 
+  /**
+   * A user.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected $user2;
+
+  /**
+   * A vocabulary.
+   *
+   * @var \Drupal\taxonomy\Entity\Vocabulary
+   */
+  protected Vocabulary $vocabulary;
+
+  /**
+   * A term.
+   *
+   * @var \Drupal\taxonomy\Entity\Term
+   */
+  protected Term $term1;
+
+  /**
+   * A term.
+   *
+   * @var \Drupal\taxonomy\Entity\Term
+   */
+  protected Term $term2;
+
   /**
    * The include resolver.
    *
diff --git a/core/modules/jsonapi/tests/src/Kernel/Normalizer/RelationshipNormalizerTest.php b/core/modules/jsonapi/tests/src/Kernel/Normalizer/RelationshipNormalizerTest.php
index d7787aca4d..1264a91ec5 100644
--- a/core/modules/jsonapi/tests/src/Kernel/Normalizer/RelationshipNormalizerTest.php
+++ b/core/modules/jsonapi/tests/src/Kernel/Normalizer/RelationshipNormalizerTest.php
@@ -2,6 +2,7 @@
 
 namespace Drupal\Tests\jsonapi\Kernel\Normalizer;
 
+use Drupal\Core\Entity\EntityInterface;
 use Drupal\Core\Field\FieldStorageDefinitionInterface;
 use Drupal\Core\Url;
 use Drupal\field\Entity\FieldConfig;
@@ -11,6 +12,7 @@
 use Drupal\jsonapi\JsonApiResource\ResourceObject;
 use Drupal\jsonapi\Normalizer\RelationshipNormalizer;
 use Drupal\jsonapi\Normalizer\Value\CacheableNormalization;
+use Drupal\jsonapi\ResourceType\ResourceTypeRepositoryInterface;
 use Drupal\node\Entity\Node;
 use Drupal\node\Entity\NodeType;
 use Drupal\Tests\jsonapi\Kernel\JsonapiKernelTestBase;
@@ -87,6 +89,55 @@ class RelationshipNormalizerTest extends JsonapiKernelTestBase {
     2,
   ];
 
+  /**
+   * A user.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $user1;
+
+  /**
+   * A user.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $user2;
+
+  /**
+   * An image.
+   *
+   * @var \Drupal\file\Entity\File
+   */
+  protected File $image1;
+
+  /**
+   * An image.
+   *
+   * @var \Drupal\file\Entity\File
+   */
+  protected File $image2;
+
+  /**
+   * A referencer node.
+   *
+   * @var \Drupal\Core\Entity\EntityInterface
+   */
+  protected EntityInterface $referencer;
+
+  /**
+   * The node type.
+   *
+   * @var \Drupal\jsonapi\ResourceType\ResourceTypeRepositoryInterface
+   */
+  protected ResourceTypeRepositoryInterface $referencingResourceType;
+
+  /**
+   * The normalizer.
+   *
+   * @var \Drupal\jsonapi\Normalizer\RelationshipNormalizer
+   */
+  protected RelationshipNormalizer $normalizer;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/jsonapi/tests/src/Kernel/Query/FilterTest.php b/core/modules/jsonapi/tests/src/Kernel/Query/FilterTest.php
index 8474c6c6be..a92359da03 100644
--- a/core/modules/jsonapi/tests/src/Kernel/Query/FilterTest.php
+++ b/core/modules/jsonapi/tests/src/Kernel/Query/FilterTest.php
@@ -53,6 +53,11 @@ class FilterTest extends JsonapiKernelTestBase {
    */
   protected $resourceTypeRepository;
 
+  /**
+   * @var \Drupal\jsonapi\Context\FieldResolver
+   */
+  protected $fieldResolver;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/jsonapi/tests/src/Kernel/Serializer/SerializerTest.php b/core/modules/jsonapi/tests/src/Kernel/Serializer/SerializerTest.php
index b55b25b98f..f12534282f 100644
--- a/core/modules/jsonapi/tests/src/Kernel/Serializer/SerializerTest.php
+++ b/core/modules/jsonapi/tests/src/Kernel/Serializer/SerializerTest.php
@@ -56,6 +56,13 @@ class SerializerTest extends JsonapiKernelTestBase {
    */
   protected $sut;
 
+  /**
+   * A user.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $user;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/language/src/LanguageNegotiationMethodManager.php b/core/modules/language/src/LanguageNegotiationMethodManager.php
index 53b59ed724..7eaa10ec0f 100644
--- a/core/modules/language/src/LanguageNegotiationMethodManager.php
+++ b/core/modules/language/src/LanguageNegotiationMethodManager.php
@@ -11,6 +11,13 @@
  */
 class LanguageNegotiationMethodManager extends DefaultPluginManager {
 
+  /**
+   * The cache key prefix.
+   *
+   * @var string
+   */
+  protected $cacheKeyPrefix;
+
   /**
    * Constructs a new LanguageNegotiationMethodManager object.
    *
diff --git a/core/modules/language/tests/src/Functional/LanguageLocaleListTest.php b/core/modules/language/tests/src/Functional/LanguageLocaleListTest.php
index 4cc495b23b..3729d2d099 100644
--- a/core/modules/language/tests/src/Functional/LanguageLocaleListTest.php
+++ b/core/modules/language/tests/src/Functional/LanguageLocaleListTest.php
@@ -3,6 +3,7 @@
 namespace Drupal\Tests\language\Functional;
 
 use Drupal\Core\Url;
+use Drupal\locale\StringStorageInterface;
 use Drupal\Tests\BrowserTestBase;
 
 /**
@@ -24,6 +25,11 @@ class LanguageLocaleListTest extends BrowserTestBase {
    */
   protected $defaultTheme = 'stark';
 
+  /**
+   * @var \Drupal\locale\StringStorageInterface
+   */
+  protected StringStorageInterface $storage;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/language/tests/src/Unit/LanguageNegotiationUrlTest.php b/core/modules/language/tests/src/Unit/LanguageNegotiationUrlTest.php
index 530ece0361..13873b940c 100644
--- a/core/modules/language/tests/src/Unit/LanguageNegotiationUrlTest.php
+++ b/core/modules/language/tests/src/Unit/LanguageNegotiationUrlTest.php
@@ -18,6 +18,7 @@ class LanguageNegotiationUrlTest extends UnitTestCase {
 
   protected $languageManager;
   protected $user;
+  protected array $languages;
 
   /**
    * {@inheritdoc}
diff --git a/core/modules/locale/src/LocaleEvent.php b/core/modules/locale/src/LocaleEvent.php
index 8851dddc46..150b9f1744 100644
--- a/core/modules/locale/src/LocaleEvent.php
+++ b/core/modules/locale/src/LocaleEvent.php
@@ -21,7 +21,7 @@ class LocaleEvent extends Event {
    *
    * @var string[]
    */
-  protected $original;
+  protected array $lids;
 
   /**
    * Constructs a new LocaleEvent.
diff --git a/core/modules/locale/tests/src/Functional/LocaleConfigTranslationTest.php b/core/modules/locale/tests/src/Functional/LocaleConfigTranslationTest.php
index 886710312b..deb81a41b9 100644
--- a/core/modules/locale/tests/src/Functional/LocaleConfigTranslationTest.php
+++ b/core/modules/locale/tests/src/Functional/LocaleConfigTranslationTest.php
@@ -3,6 +3,7 @@
 namespace Drupal\Tests\locale\Functional;
 
 use Drupal\Tests\BrowserTestBase;
+use Drupal\locale\StringStorageInterface;
 use Drupal\Core\Language\LanguageInterface;
 
 /**
@@ -31,6 +32,11 @@ class LocaleConfigTranslationTest extends BrowserTestBase {
    */
   protected $defaultTheme = 'stark';
 
+  /**
+   * @var \Drupal\locale\StringStorageInterface
+   */
+  protected StringStorageInterface $storage;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/locale/tests/src/Unit/LocaleTranslationTest.php b/core/modules/locale/tests/src/Unit/LocaleTranslationTest.php
index 230d8efa81..58ce33651b 100644
--- a/core/modules/locale/tests/src/Unit/LocaleTranslationTest.php
+++ b/core/modules/locale/tests/src/Unit/LocaleTranslationTest.php
@@ -19,6 +19,20 @@ class LocaleTranslationTest extends UnitTestCase {
    */
   protected $storage;
 
+  /**
+   * A mocked lock to use when instantiating LocaleTranslation objects.
+   *
+   * @var \PHPUnit\Framework\MockObject\MockObject
+   */
+  protected $lock;
+
+  /**
+   * A mocked cache to use when instantiating LocaleTranslation objects.
+   *
+   * @var \PHPUnit\Framework\MockObject\MockObject
+   */
+  protected $cache;
+
   /**
    * A mocked language manager built from LanguageManagerInterface.
    *
diff --git a/core/modules/media/tests/src/Kernel/OEmbedResourceConstraintValidatorTest.php b/core/modules/media/tests/src/Kernel/OEmbedResourceConstraintValidatorTest.php
index 1ec413ca79..a925edde13 100644
--- a/core/modules/media/tests/src/Kernel/OEmbedResourceConstraintValidatorTest.php
+++ b/core/modules/media/tests/src/Kernel/OEmbedResourceConstraintValidatorTest.php
@@ -104,6 +104,8 @@ public function testValidateUrlResolverInvoked() {
   protected function getValue(Media $media) {
     return new class ($media) {
 
+      private $entity;
+
       public function __construct($entity) {
         $this->entity = $entity;
       }
diff --git a/core/modules/media_library/tests/src/Kernel/MediaLibraryWidgetTest.php b/core/modules/media_library/tests/src/Kernel/MediaLibraryWidgetTest.php
index 57e3ef47f6..a8f923c847 100644
--- a/core/modules/media_library/tests/src/Kernel/MediaLibraryWidgetTest.php
+++ b/core/modules/media_library/tests/src/Kernel/MediaLibraryWidgetTest.php
@@ -43,6 +43,13 @@ class MediaLibraryWidgetTest extends KernelTestBase {
    */
   protected $adminUser;
 
+  /**
+   * The base field definition.
+   *
+   * @var \Drupal\Core\Field\BaseFieldDefinition
+   */
+  protected BaseFieldDefinition $baseField;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/migrate/src/Plugin/migrate/destination/Entity.php b/core/modules/migrate/src/Plugin/migrate/destination/Entity.php
index 0e9668b54f..bc7afd91d2 100644
--- a/core/modules/migrate/src/Plugin/migrate/destination/Entity.php
+++ b/core/modules/migrate/src/Plugin/migrate/destination/Entity.php
@@ -70,6 +70,13 @@ abstract class Entity extends DestinationBase implements ContainerFactoryPluginI
    */
   protected $storage;
 
+  /**
+   * The entity field manager.
+   *
+   * @var \Drupal\Core\Entity\EntityFieldManagerInterface
+   */
+  protected $entityFieldManager;
+
   /**
    * The list of the bundles of this entity type.
    *
diff --git a/core/modules/migrate/src/Plugin/migrate/process/Route.php b/core/modules/migrate/src/Plugin/migrate/process/Route.php
index 63c1020072..b750dc8abd 100644
--- a/core/modules/migrate/src/Plugin/migrate/process/Route.php
+++ b/core/modules/migrate/src/Plugin/migrate/process/Route.php
@@ -57,6 +57,13 @@
  */
 class Route extends ProcessPluginBase implements ContainerFactoryPluginInterface {
 
+  /**
+   * The current migration.
+   *
+   * @var \Drupal\migrate\Plugin\MigrationInterface
+   */
+  protected MigrationInterface $migration;
+
   /**
    * The path validator service.
    *
diff --git a/core/modules/migrate/tests/src/Kernel/MigrateTestBase.php b/core/modules/migrate/tests/src/Kernel/MigrateTestBase.php
index b0481d792f..e7a26205cd 100644
--- a/core/modules/migrate/tests/src/Kernel/MigrateTestBase.php
+++ b/core/modules/migrate/tests/src/Kernel/MigrateTestBase.php
@@ -107,7 +107,6 @@ private function createMigrationConnection() {
   protected function tearDown(): void {
     $this->cleanupMigrateConnection();
     parent::tearDown();
-    $this->databaseDumpFiles = [];
     $this->collectMessages = FALSE;
     unset($this->migration, $this->migrateMessages);
   }
diff --git a/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityDisplayTest.php b/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityDisplayTest.php
index 5c4a856c0b..83290a9d65 100644
--- a/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityDisplayTest.php
+++ b/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityDisplayTest.php
@@ -53,6 +53,7 @@ public function testImport() {
 class TestPerComponentEntityDisplay extends ComponentEntityDisplayBase {
   const MODE_NAME = 'view_mode';
   protected $testValues;
+  protected $entity;
 
   public function __construct($entity) {
     $this->entity = $entity;
diff --git a/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php b/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php
index 218d9a6585..eb0996fc0c 100644
--- a/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php
+++ b/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php
@@ -53,6 +53,7 @@ public function testImport() {
 class TestPerComponentEntityFormDisplay extends PerComponentEntityFormDisplay {
   const MODE_NAME = 'form_mode';
   protected $testValues;
+  protected $entity;
 
   public function __construct($entity) {
     $this->entity = $entity;
diff --git a/core/modules/node/tests/src/Functional/NodeAccessCacheabilityTest.php b/core/modules/node/tests/src/Functional/NodeAccessCacheabilityTest.php
index 8558fe5344..0967123080 100644
--- a/core/modules/node/tests/src/Functional/NodeAccessCacheabilityTest.php
+++ b/core/modules/node/tests/src/Functional/NodeAccessCacheabilityTest.php
@@ -52,8 +52,6 @@ protected function setUp(): void {
    * @see node_query_node_access_alter()
    */
   public function testNodeAccessCacheabilitySafeguard() {
-    $this->dumpHeaders = TRUE;
-
     // The node grants cache context should be added automatically.
     $this->drupalGet(new Url('node_access_test_auto_bubbling'));
     $this->assertCacheContext('user.node_grants:view');
diff --git a/core/modules/node/tests/src/Functional/NodeAccessGrantsCacheContextTest.php b/core/modules/node/tests/src/Functional/NodeAccessGrantsCacheContextTest.php
index 746a750fe3..476de66890 100644
--- a/core/modules/node/tests/src/Functional/NodeAccessGrantsCacheContextTest.php
+++ b/core/modules/node/tests/src/Functional/NodeAccessGrantsCacheContextTest.php
@@ -3,6 +3,7 @@
 namespace Drupal\Tests\node\Functional;
 
 use Drupal\Core\Database\Database;
+use Drupal\user\Entity\User;
 
 /**
  * Tests the node access grants cache context service.
@@ -34,6 +35,18 @@ class NodeAccessGrantsCacheContextTest extends NodeTestBase {
    */
   protected $noAccessUser;
 
+  /**
+   * User without permission to view content.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $noAccessUser2;
+
+  /**
+   * @var array
+   */
+  protected array $userMapping;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/node/tests/src/Functional/NodeAccessPagerTest.php b/core/modules/node/tests/src/Functional/NodeAccessPagerTest.php
index 9000a1f661..482dd663ed 100644
--- a/core/modules/node/tests/src/Functional/NodeAccessPagerTest.php
+++ b/core/modules/node/tests/src/Functional/NodeAccessPagerTest.php
@@ -6,6 +6,7 @@
 use Drupal\comment\Tests\CommentTestTrait;
 use Drupal\comment\Entity\Comment;
 use Drupal\Tests\BrowserTestBase;
+use Drupal\user\Entity\User;
 
 /**
  * Tests access controlled node views have the right amount of comment pages.
@@ -16,6 +17,13 @@ class NodeAccessPagerTest extends BrowserTestBase {
 
   use CommentTestTrait;
 
+  /**
+   * An user.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $webUser;
+
   /**
    * Modules to enable.
    *
diff --git a/core/modules/node/tests/src/Functional/NodeQueryAlterTest.php b/core/modules/node/tests/src/Functional/NodeQueryAlterTest.php
index a54a93ba9d..ef51a4298b 100644
--- a/core/modules/node/tests/src/Functional/NodeQueryAlterTest.php
+++ b/core/modules/node/tests/src/Functional/NodeQueryAlterTest.php
@@ -3,6 +3,7 @@
 namespace Drupal\Tests\node\Functional;
 
 use Drupal\Core\Database\Database;
+use Drupal\user\Entity\User;
 
 /**
  * Tests that node access queries are properly altered by the node module.
@@ -33,6 +34,13 @@ class NodeQueryAlterTest extends NodeTestBase {
    */
   protected $noAccessUser;
 
+  /**
+   * User without permission to view content.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $noAccessUser2;
+
   protected function setUp(): void {
     parent::setUp();
 
diff --git a/core/modules/node/tests/src/Functional/PagePreviewTest.php b/core/modules/node/tests/src/Functional/PagePreviewTest.php
index 28e8a3a701..4cd19d6f8c 100644
--- a/core/modules/node/tests/src/Functional/PagePreviewTest.php
+++ b/core/modules/node/tests/src/Functional/PagePreviewTest.php
@@ -65,6 +65,13 @@ class PagePreviewTest extends NodeTestBase {
    */
   protected $fieldName;
 
+  /**
+   * A term.
+   *
+   * @var \Drupal\taxonomy\Entity\Term
+   */
+  protected Term $term;
+
   protected function setUp(): void {
     parent::setUp();
     $this->addDefaultCommentField('node', 'page');
@@ -86,13 +93,11 @@ protected function setUp(): void {
     ]);
     $vocabulary->save();
 
-    $this->vocabulary = $vocabulary;
-
     // Add a term to the vocabulary.
     $term = Term::create([
       'name' => $this->randomMachineName(),
       'description' => $this->randomMachineName(),
-      'vid' => $this->vocabulary->id(),
+      'vid' => $vocabulary->id(),
       'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
     ]);
     $term->save();
@@ -122,7 +127,7 @@ protected function setUp(): void {
     $this->fieldName = mb_strtolower($this->randomMachineName());
     $handler_settings = [
       'target_bundles' => [
-        $this->vocabulary->id() => $this->vocabulary->id(),
+        $vocabulary->id() => $vocabulary->id(),
       ],
       'auto_create' => TRUE,
     ];
diff --git a/core/modules/node/tests/src/Functional/Views/Wizard/HiddenTaxonomyTermReferenceFieldWizardTest.php b/core/modules/node/tests/src/Functional/Views/Wizard/HiddenTaxonomyTermReferenceFieldWizardTest.php
index 11880f24f7..d528dc39b4 100644
--- a/core/modules/node/tests/src/Functional/Views/Wizard/HiddenTaxonomyTermReferenceFieldWizardTest.php
+++ b/core/modules/node/tests/src/Functional/Views/Wizard/HiddenTaxonomyTermReferenceFieldWizardTest.php
@@ -37,9 +37,9 @@ public function testHiddenTaxonomyTermReferenceField() {
     // Create a taxonomy_term_reference field on the article Content Type. By
     // not assigning a widget to that field we make sure it is hidden on the
     // Form Display.
-    $this->fieldName = mb_strtolower($this->randomMachineName());
+    $field_name = mb_strtolower($this->randomMachineName());
     FieldStorageConfig::create([
-      'field_name' => $this->fieldName,
+      'field_name' => $field_name,
       'entity_type' => 'node',
       'type' => 'entity_reference',
       'cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED,
@@ -48,7 +48,7 @@ public function testHiddenTaxonomyTermReferenceField() {
       ],
     ])->save();
     FieldConfig::create([
-      'field_name' => $this->fieldName,
+      'field_name' => $field_name,
       'bundle' => 'article',
       'entity_type' => 'node',
       'settings' => [
diff --git a/core/modules/options/tests/src/Functional/OptionsDynamicValuesTestBase.php b/core/modules/options/tests/src/Functional/OptionsDynamicValuesTestBase.php
index 5a5f751dd6..47a2034924 100644
--- a/core/modules/options/tests/src/Functional/OptionsDynamicValuesTestBase.php
+++ b/core/modules/options/tests/src/Functional/OptionsDynamicValuesTestBase.php
@@ -33,6 +33,20 @@ abstract class OptionsDynamicValuesTestBase extends FieldTestBase {
    */
   protected $fieldStorage;
 
+  /**
+   * The field config.
+   *
+   * @var \Drupal\field\Entity\FieldConfig
+   */
+  protected FieldConfig $field;
+
+  /**
+   * Test data.
+   *
+   * @var array
+   */
+  protected array $test;
+
   protected function setUp(): void {
     parent::setUp();
 
diff --git a/core/modules/options/tests/src/Kernel/Views/ViewsDataTest.php b/core/modules/options/tests/src/Kernel/Views/ViewsDataTest.php
index 98cf8bf507..7a68b1819e 100644
--- a/core/modules/options/tests/src/Kernel/Views/ViewsDataTest.php
+++ b/core/modules/options/tests/src/Kernel/Views/ViewsDataTest.php
@@ -29,6 +29,13 @@ class ViewsDataTest extends OptionsTestBase {
    */
   protected $fieldStorage;
 
+  /**
+   * The field config.
+   *
+   * @var \Drupal\field\Entity\FieldConfig
+   */
+  protected FieldConfig $field;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/responsive_image/tests/src/FunctionalJavascript/ResponsiveImageFieldUiTest.php b/core/modules/responsive_image/tests/src/FunctionalJavascript/ResponsiveImageFieldUiTest.php
index 7ecfd5fbec..bc6bef3baa 100644
--- a/core/modules/responsive_image/tests/src/FunctionalJavascript/ResponsiveImageFieldUiTest.php
+++ b/core/modules/responsive_image/tests/src/FunctionalJavascript/ResponsiveImageFieldUiTest.php
@@ -31,6 +31,13 @@ class ResponsiveImageFieldUiTest extends WebDriverTestBase {
     'block',
   ];
 
+  /**
+   * The content type id.
+   *
+   * @var string
+   */
+  protected string $type;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/rest/tests/src/Unit/CollectRoutesTest.php b/core/modules/rest/tests/src/Unit/CollectRoutesTest.php
index faf3fda731..b5c390d4dc 100644
--- a/core/modules/rest/tests/src/Unit/CollectRoutesTest.php
+++ b/core/modules/rest/tests/src/Unit/CollectRoutesTest.php
@@ -39,7 +39,7 @@ protected function setUp(): void {
       ->disableOriginalConstructor()
       ->getMock();
 
-    $this->view = $this->getMockBuilder('\Drupal\views\Entity\View')
+    $view = $this->getMockBuilder('\Drupal\views\Entity\View')
       ->addMethods(['initHandlers'])
       ->setConstructorArgs([['id' => 'test_view'], 'view'])
       ->getMock();
@@ -52,7 +52,7 @@ protected function setUp(): void {
       ->method('getTitle')
       ->willReturn('View title');
 
-    $view_executable->storage = $this->view;
+    $view_executable->storage = $view;
     $view_executable->argument = [];
 
     $display_manager = $this->getMockBuilder('\Drupal\views\Plugin\ViewsPluginManager')
@@ -137,7 +137,7 @@ protected function setUp(): void {
     $this->routes->add('test_1', new Route('/test/1'));
     $this->routes->add('view.test_view.page_1', new Route('/test/2'));
 
-    $this->view->addDisplay('page', NULL, 'page_1');
+    $view->addDisplay('page', NULL, 'page_1');
   }
 
   /**
diff --git a/core/modules/search/src/Plugin/views/argument/Search.php b/core/modules/search/src/Plugin/views/argument/Search.php
index ab61880e14..c61e560644 100644
--- a/core/modules/search/src/Plugin/views/argument/Search.php
+++ b/core/modules/search/src/Plugin/views/argument/Search.php
@@ -31,6 +31,16 @@ class Search extends ArgumentPluginBase {
    */
   protected $searchType;
 
+  /**
+   * @var string
+   */
+  protected $operator;
+
+  /**
+   * @var string
+   */
+  protected string $search_score;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/search/src/Plugin/views/filter/Search.php b/core/modules/search/src/Plugin/views/filter/Search.php
index c0b0d4516b..11bcf7721b 100644
--- a/core/modules/search/src/Plugin/views/filter/Search.php
+++ b/core/modules/search/src/Plugin/views/filter/Search.php
@@ -46,6 +46,11 @@ class Search extends FilterPluginBase {
    */
   protected $searchType;
 
+  /**
+   * @var string
+   */
+  protected string $search_score;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/statistics/tests/src/Functional/StatisticsLoggingTest.php b/core/modules/statistics/tests/src/Functional/StatisticsLoggingTest.php
index 77dd94636a..02c85d7155 100644
--- a/core/modules/statistics/tests/src/Functional/StatisticsLoggingTest.php
+++ b/core/modules/statistics/tests/src/Functional/StatisticsLoggingTest.php
@@ -49,6 +49,13 @@ class StatisticsLoggingTest extends BrowserTestBase {
    */
   protected $client;
 
+  /**
+   * A test node.
+   *
+   * @var \Drupal\node\Entity\Node
+   */
+  protected Node $node;
+
   protected function setUp(): void {
     parent::setUp();
 
diff --git a/core/modules/statistics/tests/src/Functional/Views/IntegrationTest.php b/core/modules/statistics/tests/src/Functional/Views/IntegrationTest.php
index e92b723a38..c4c1754e82 100644
--- a/core/modules/statistics/tests/src/Functional/Views/IntegrationTest.php
+++ b/core/modules/statistics/tests/src/Functional/Views/IntegrationTest.php
@@ -3,6 +3,7 @@
 namespace Drupal\Tests\statistics\Functional\Views;
 
 use Drupal\Tests\views\Functional\ViewTestBase;
+use Drupal\user\UserInterface;
 
 /**
  * Tests basic integration of views data from the statistics module.
@@ -32,6 +33,13 @@ class IntegrationTest extends ViewTestBase {
    */
   protected $webUser;
 
+  /**
+   * A test user with node viewing access only.
+   *
+   * @var \Drupal\user\UserInterface
+   */
+  protected UserInterface $deniedUser;
+
   /**
    * Stores the node object which is used by the test.
    *
diff --git a/core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php b/core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php
index 112b610179..c96f4c5a21 100644
--- a/core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php
+++ b/core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php
@@ -11,6 +11,13 @@
  */
 class AcceptHeaderMiddleware implements HttpKernelInterface {
 
+  /**
+   * The app kernel.
+   *
+   * @var \Symfony\Component\HttpKernel\HttpKernelInterface
+   */
+  protected HttpKernelInterface $app;
+
   /**
    * Constructs a new AcceptHeaderMiddleware instance.
    *
diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestResourceTestBase.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestResourceTestBase.php
index cb12fb7176..af57bb04d7 100644
--- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestResourceTestBase.php
+++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestResourceTestBase.php
@@ -25,11 +25,25 @@ abstract class EntityTestResourceTestBase extends ConfigEntityResourceTestBase {
    */
   protected static $patchProtectedFieldNames = [];
 
+  /**
+   * The state object.
+   *
+   * @var \Drupal\Core\State\StateInterface
+   */
+  protected $state;
+
   /**
    * @var \Drupal\entity_test\Entity\EntityTest
    */
   protected $entity;
 
+  /**
+   * The entity definition update manager.
+   *
+   * @var \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface
+   */
+  protected $entityDefinitionUpdateManager;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/system/tests/modules/error_service_test/src/Controller/LonelyMonkeyController.php b/core/modules/system/tests/modules/error_service_test/src/Controller/LonelyMonkeyController.php
index 4946417a45..56f4e8276e 100644
--- a/core/modules/system/tests/modules/error_service_test/src/Controller/LonelyMonkeyController.php
+++ b/core/modules/system/tests/modules/error_service_test/src/Controller/LonelyMonkeyController.php
@@ -12,6 +12,13 @@
  */
 class LonelyMonkeyController extends ControllerBase implements ContainerInjectionInterface {
 
+  /**
+   * The lonely monkey class.
+   *
+   * @var \Drupal\error_service_test\LonelyMonkeyClass
+   */
+  protected LonelyMonkeyClass $class;
+
   public function __construct(LonelyMonkeyClass $class) {
     $this->class = $class;
   }
diff --git a/core/modules/system/tests/modules/error_service_test/src/LonelyMonkeyClass.php b/core/modules/system/tests/modules/error_service_test/src/LonelyMonkeyClass.php
index bbe1d6a191..acbfa930c4 100644
--- a/core/modules/system/tests/modules/error_service_test/src/LonelyMonkeyClass.php
+++ b/core/modules/system/tests/modules/error_service_test/src/LonelyMonkeyClass.php
@@ -9,6 +9,13 @@
  */
 class LonelyMonkeyClass {
 
+  /**
+   * The database connection.
+   *
+   * @var \Drupal\Core\Database\Connection
+   */
+  protected Connection $connection;
+
   public function __construct(Connection $connection) {
     $this->connection = $connection;
   }
diff --git a/core/modules/system/tests/modules/error_service_test/src/MonkeysInTheControlRoom.php b/core/modules/system/tests/modules/error_service_test/src/MonkeysInTheControlRoom.php
index 7df8d810f9..81d54c6048 100644
--- a/core/modules/system/tests/modules/error_service_test/src/MonkeysInTheControlRoom.php
+++ b/core/modules/system/tests/modules/error_service_test/src/MonkeysInTheControlRoom.php
@@ -21,6 +21,13 @@ class MonkeysInTheControlRoom implements HttpKernelInterface {
    */
   protected $app;
 
+  /**
+   * The settings.
+   *
+   * @var \Drupal\Core\Site\Settings
+   */
+  protected Settings $settings;
+
   /**
    * MonkeysInTheControlRoom constructor.
    *
diff --git a/core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php b/core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php
index dca3999efc..a9a0cf93ab 100644
--- a/core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php
+++ b/core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php
@@ -28,8 +28,6 @@ class SessionExistsCacheContextTest extends BrowserTestBase {
    * Tests \Drupal\Core\Cache\Context\SessionExistsCacheContext::getContext().
    */
   public function testCacheContext() {
-    $this->dumpHeaders = TRUE;
-
     // 1. No session (anonymous).
     $this->assertSessionCookieOnClient(FALSE);
     $this->drupalGet(Url::fromRoute('<front>'));
diff --git a/core/modules/system/tests/src/Functional/Entity/EntityListBuilderTest.php b/core/modules/system/tests/src/Functional/Entity/EntityListBuilderTest.php
index 5905701bed..5c9c8963e8 100644
--- a/core/modules/system/tests/src/Functional/Entity/EntityListBuilderTest.php
+++ b/core/modules/system/tests/src/Functional/Entity/EntityListBuilderTest.php
@@ -30,10 +30,9 @@ protected function setUp(): void {
     parent::setUp();
 
     // Create and log in user.
-    $this->webUser = $this->drupalCreateUser([
+    $this->drupalLogin($this->drupalCreateUser([
       'administer entity_test content',
-    ]);
-    $this->drupalLogin($this->webUser);
+    ]));
   }
 
   /**
diff --git a/core/modules/system/tests/src/Functional/FileTransfer/FileTransferTest.php b/core/modules/system/tests/src/Functional/FileTransfer/FileTransferTest.php
index a4f24c00b1..ec2c522598 100644
--- a/core/modules/system/tests/src/Functional/FileTransfer/FileTransferTest.php
+++ b/core/modules/system/tests/src/Functional/FileTransfer/FileTransferTest.php
@@ -23,6 +23,11 @@ class FileTransferTest extends BrowserTestBase {
    */
   protected $defaultTheme = 'stark';
 
+  /**
+   * @var \Drupal\Tests\system\Functional\FileTransfer\TestFileTransfer
+   */
+  protected $testConnection;
+
   protected function setUp(): void {
     parent::setUp();
     $this->testConnection = TestFileTransfer::factory($this->root, ['hostname' => $this->hostname, 'username' => $this->username, 'password' => $this->password, 'port' => $this->port]);
diff --git a/core/modules/system/tests/src/Functional/System/SiteMaintenanceTest.php b/core/modules/system/tests/src/Functional/System/SiteMaintenanceTest.php
index 61efe6f0f8..9f318ef8a4 100644
--- a/core/modules/system/tests/src/Functional/System/SiteMaintenanceTest.php
+++ b/core/modules/system/tests/src/Functional/System/SiteMaintenanceTest.php
@@ -5,6 +5,7 @@
 use Drupal\Core\Test\AssertMailTrait;
 use Drupal\Core\Url;
 use Drupal\Tests\BrowserTestBase;
+use Drupal\user\Entity\User;
 
 /**
  * Tests access to site while in maintenance mode.
@@ -31,6 +32,13 @@ class SiteMaintenanceTest extends BrowserTestBase {
 
   protected $adminUser;
 
+  /**
+   * User allowed to access site in maintenance mode.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $user;
+
   protected function setUp(): void {
     parent::setUp();
 
diff --git a/core/modules/system/tests/src/Functional/System/ThemeTest.php b/core/modules/system/tests/src/Functional/System/ThemeTest.php
index e74bf68b23..1d463bcff6 100644
--- a/core/modules/system/tests/src/Functional/System/ThemeTest.php
+++ b/core/modules/system/tests/src/Functional/System/ThemeTest.php
@@ -4,6 +4,7 @@
 
 use Drupal\Core\StreamWrapper\PublicStream;
 use Drupal\Core\StreamWrapper\StreamWrapperManager;
+use Drupal\node\Entity\Node;
 use Drupal\Tests\BrowserTestBase;
 use Drupal\Tests\TestFileCreationTrait;
 
@@ -38,6 +39,13 @@ class ThemeTest extends BrowserTestBase {
    */
   protected $defaultTheme = 'classy';
 
+  /**
+   * A test node.
+   *
+   * @var \Drupal\node\Entity\Node
+   */
+  protected Node $node;
+
   protected function setUp(): void {
     parent::setUp();
 
diff --git a/core/modules/system/tests/src/Functional/Theme/FastTest.php b/core/modules/system/tests/src/Functional/Theme/FastTest.php
index 4047532586..2f26509e8d 100644
--- a/core/modules/system/tests/src/Functional/Theme/FastTest.php
+++ b/core/modules/system/tests/src/Functional/Theme/FastTest.php
@@ -3,6 +3,7 @@
 namespace Drupal\Tests\system\Functional\Theme;
 
 use Drupal\Tests\BrowserTestBase;
+use Drupal\user\Entity\User;
 
 /**
  * Tests autocompletion not loading registry.
@@ -23,6 +24,13 @@ class FastTest extends BrowserTestBase {
    */
   protected $defaultTheme = 'stark';
 
+  /**
+   * User allowed to access use profiles.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected User $account;
+
   protected function setUp(): void {
     parent::setUp();
     $this->account = $this->drupalCreateUser(['access user profiles']);
diff --git a/core/modules/system/tests/src/Functional/Theme/ToolbarClaroOverridesTest.php b/core/modules/system/tests/src/Functional/Theme/ToolbarClaroOverridesTest.php
index 1cb5d283d7..dafeb07129 100644
--- a/core/modules/system/tests/src/Functional/Theme/ToolbarClaroOverridesTest.php
+++ b/core/modules/system/tests/src/Functional/Theme/ToolbarClaroOverridesTest.php
@@ -2,6 +2,7 @@
 
 namespace Drupal\Tests\system\Functional\Theme;
 
+use Drupal\Core\Theme\ThemeManagerInterface;
 use Drupal\Tests\BrowserTestBase;
 
 /**
@@ -28,6 +29,13 @@ class ToolbarClaroOverridesTest extends BrowserTestBase {
    */
   protected $themeInstaller;
 
+  /**
+   * The theme manager.
+   *
+   * @var \Drupal\Core\Theme\ThemeManagerInterface
+   */
+  protected ThemeManagerInterface $themeManager;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/system/tests/src/Functional/UpdateSystem/UpdateRemovedPostUpdateTest.php b/core/modules/system/tests/src/Functional/UpdateSystem/UpdateRemovedPostUpdateTest.php
index 8809c95147..587afdd19e 100644
--- a/core/modules/system/tests/src/Functional/UpdateSystem/UpdateRemovedPostUpdateTest.php
+++ b/core/modules/system/tests/src/Functional/UpdateSystem/UpdateRemovedPostUpdateTest.php
@@ -6,6 +6,7 @@
 use Drupal\Core\Url;
 use Drupal\Tests\BrowserTestBase;
 use Drupal\Tests\UpdatePathTestTrait;
+use Drupal\user\UserInterface;
 
 /**
  * Tests hook_removed_post_updates().
@@ -20,6 +21,20 @@ class UpdateRemovedPostUpdateTest extends BrowserTestBase {
    */
   protected $defaultTheme = 'stark';
 
+  /**
+   * An user that can execute updates.
+   *
+   * @var \Drupal\Core\Url
+   */
+  protected Url $updateUrl;
+
+  /**
+   * An user that can execute updates.
+   *
+   * @var \Drupal\user\UserInterface
+   */
+  protected UserInterface $updateUser;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/system/tests/src/Unit/Breadcrumbs/PathBasedBreadcrumbBuilderTest.php b/core/modules/system/tests/src/Unit/Breadcrumbs/PathBasedBreadcrumbBuilderTest.php
index 0ad5b46137..78d82a2baf 100644
--- a/core/modules/system/tests/src/Unit/Breadcrumbs/PathBasedBreadcrumbBuilderTest.php
+++ b/core/modules/system/tests/src/Unit/Breadcrumbs/PathBasedBreadcrumbBuilderTest.php
@@ -413,6 +413,8 @@ protected function setupStubPathProcessor() {
  */
 class TestPathBasedBreadcrumbBuilder extends PathBasedBreadcrumbBuilder {
 
+  protected LinkGeneratorInterface $linkGenerator;
+
   public function setStringTranslation(TranslationInterface $string_translation) {
     $this->stringTranslation = $string_translation;
   }
diff --git a/core/modules/update/src/UpdateProcessor.php b/core/modules/update/src/UpdateProcessor.php
index 3f6b24ffba..2330ca811d 100644
--- a/core/modules/update/src/UpdateProcessor.php
+++ b/core/modules/update/src/UpdateProcessor.php
@@ -78,6 +78,11 @@ class UpdateProcessor implements UpdateProcessorInterface {
    */
   protected $privateKey;
 
+  /**
+   * @var array
+   */
+  protected array $fetchTasks;
+
   /**
    * Constructs an UpdateProcessor.
    *
diff --git a/core/modules/user/src/Plugin/views/filter/Name.php b/core/modules/user/src/Plugin/views/filter/Name.php
index 3ad018fa55..1bc8e0778b 100644
--- a/core/modules/user/src/Plugin/views/filter/Name.php
+++ b/core/modules/user/src/Plugin/views/filter/Name.php
@@ -18,6 +18,8 @@ class Name extends InOperator {
 
   protected $alwaysMultiple = TRUE;
 
+  protected $validated_exposed_input;
+
   protected function valueForm(&$form, FormStateInterface $form_state) {
     $users = $this->value ? User::loadMultiple($this->value) : [];
     $default_value = EntityAutocomplete::getEntityLabels($users);
diff --git a/core/modules/user/tests/src/Functional/UserRegistrationRestTest.php b/core/modules/user/tests/src/Functional/UserRegistrationRestTest.php
index c09aa289ee..e1aaffbc31 100644
--- a/core/modules/user/tests/src/Functional/UserRegistrationRestTest.php
+++ b/core/modules/user/tests/src/Functional/UserRegistrationRestTest.php
@@ -42,6 +42,13 @@ class UserRegistrationRestTest extends ResourceTestBase {
    */
   protected static $modules = ['user', 'rest'];
 
+  /**
+   * Entity type ID for this storage.
+   *
+   * @var string
+   */
+  protected static $entityTypeId;
+
   const USER_EMAIL_DOMAIN = '@example.com';
 
   const TEST_EMAIL_DOMAIN = 'simpletest@example.com';
diff --git a/core/modules/views/src/ManyToOneHelper.php b/core/modules/views/src/ManyToOneHelper.php
index ad659a3626..e0c3c5ef05 100644
--- a/core/modules/views/src/ManyToOneHelper.php
+++ b/core/modules/views/src/ManyToOneHelper.php
@@ -20,6 +20,8 @@
  */
 class ManyToOneHelper {
 
+  protected $handler;
+
   public function __construct($handler) {
     $this->handler = $handler;
   }
@@ -140,7 +142,7 @@ public function summaryJoin() {
               'field' => $this->handler->realField,
               'operator' => '!=',
               'value' => $value,
-              'numeric' => !empty($this->definition['numeric']),
+              'numeric' => !empty($this->handler->definition['numeric']),
             ],
           ];
         }
diff --git a/core/modules/views/src/Plugin/views/HandlerBase.php b/core/modules/views/src/Plugin/views/HandlerBase.php
index 311c98550f..ad1bf7d06d 100644
--- a/core/modules/views/src/Plugin/views/HandlerBase.php
+++ b/core/modules/views/src/Plugin/views/HandlerBase.php
@@ -80,6 +80,11 @@ abstract class HandlerBase extends PluginBase implements ViewsHandlerInterface {
    */
   protected $viewsData;
 
+  /**
+   * @var bool
+   */
+  protected $is_handler;
+
   /**
    * Constructs a Handler object.
    *
diff --git a/core/modules/views/src/Plugin/views/PluginBase.php b/core/modules/views/src/Plugin/views/PluginBase.php
index 1d5afc118c..213ef9d34b 100644
--- a/core/modules/views/src/Plugin/views/PluginBase.php
+++ b/core/modules/views/src/Plugin/views/PluginBase.php
@@ -134,6 +134,7 @@ public static function create(ContainerInterface $container, array $configuratio
    */
   public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
     $this->view = $view;
+    $this->options = $this->options ?? [];
     $this->setOptionDefaults($this->options, $this->defineOptions());
     $this->displayHandler = $display;
 
diff --git a/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
index 3da81eb1a2..8ec5e8fb72 100644
--- a/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
+++ b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
@@ -65,6 +65,11 @@ abstract class ArgumentPluginBase extends HandlerBase implements CacheableDepend
    */
   public $name_table;
 
+  /**
+   * @var string
+   */
+  protected $name_table_alias;
+
   /**
    * The field to use for the name to use in the summary, which is
    * the displayed output. For example, for the node: nid argument,
@@ -73,6 +78,43 @@ abstract class ArgumentPluginBase extends HandlerBase implements CacheableDepend
    */
   public $name_field;
 
+  /**
+   * The alias for the field.
+   *
+   * @var string
+   */
+  protected $name_alias;
+
+  /**
+   * @var string
+   */
+  protected $base_alias;
+
+  /**
+   * @var string
+   */
+  protected $count_alias;
+
+  /**
+   * @var bool
+   */
+  protected $argument_validated;
+
+  /**
+   * @var bool
+   */
+  protected $is_default;
+
+  /**
+   * @var string
+   */
+  protected $operator;
+
+  /**
+   * @var int
+   */
+  protected $position;
+
   /**
    * Overrides Drupal\views\Plugin\views\HandlerBase:init().
    */
diff --git a/core/modules/views/src/Plugin/views/argument/ManyToOne.php b/core/modules/views/src/Plugin/views/argument/ManyToOne.php
index 680c19f2aa..9cd6ce2977 100644
--- a/core/modules/views/src/Plugin/views/argument/ManyToOne.php
+++ b/core/modules/views/src/Plugin/views/argument/ManyToOne.php
@@ -24,6 +24,11 @@
  */
 class ManyToOne extends ArgumentPluginBase {
 
+  /**
+   * @var \Drupal\views\ManyToOneHelper
+   */
+  protected $helper;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/argument/StringArgument.php b/core/modules/views/src/Plugin/views/argument/StringArgument.php
index ef85b80e63..86b345ed47 100644
--- a/core/modules/views/src/Plugin/views/argument/StringArgument.php
+++ b/core/modules/views/src/Plugin/views/argument/StringArgument.php
@@ -19,6 +19,11 @@
  */
 class StringArgument extends ArgumentPluginBase {
 
+  /**
+   * @var \Drupal\views\ManyToOneHelper
+   */
+  protected $helper;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php b/core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php
index 4f91e6a160..080dcf1d7c 100644
--- a/core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php
+++ b/core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php
@@ -37,6 +37,11 @@ abstract class ArgumentDefaultPluginBase extends PluginBase {
    */
   protected $argument;
 
+  /**
+   * @var string
+   */
+  protected $option_name;
+
   /**
    * Return the default argument.
    *
diff --git a/core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php b/core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php
index c89479f9dc..7621b7efcb 100644
--- a/core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php
+++ b/core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php
@@ -40,6 +40,11 @@ abstract class ArgumentValidatorPluginBase extends PluginBase {
    */
   protected $argument;
 
+  /**
+   * @var string
+   */
+  protected $option_name;
+
   /**
    * Sets the parent argument this plugin is associated with.
    *
diff --git a/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
index 338c5fe72d..f0dea4111f 100644
--- a/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
+++ b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
@@ -122,6 +122,16 @@ abstract class DisplayPluginBase extends PluginBase implements DisplayPluginInte
    */
   public $display;
 
+  /**
+   * @var bool
+   */
+  protected bool $has_exposed;
+
+  /**
+   * @var object
+   */
+  public $default_display;
+
   /**
    * Constructs a new DisplayPluginBase object.
    *
diff --git a/core/modules/views/src/Plugin/views/display/EntityReference.php b/core/modules/views/src/Plugin/views/display/EntityReference.php
index 47c372bc37..aaab274883 100644
--- a/core/modules/views/src/Plugin/views/display/EntityReference.php
+++ b/core/modules/views/src/Plugin/views/display/EntityReference.php
@@ -49,6 +49,11 @@ class EntityReference extends DisplayPluginBase {
    */
   protected $connection;
 
+  /**
+   * @var string
+   */
+  protected $id_field_alias;
+
   /**
    * Constructs a new EntityReference object.
    *
diff --git a/core/modules/views/src/Plugin/views/field/Boolean.php b/core/modules/views/src/Plugin/views/field/Boolean.php
index ec542fc52d..d346644772 100644
--- a/core/modules/views/src/Plugin/views/field/Boolean.php
+++ b/core/modules/views/src/Plugin/views/field/Boolean.php
@@ -29,6 +29,11 @@
  */
 class Boolean extends FieldPluginBase {
 
+  /**
+   * @var array
+   */
+  protected $formats;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/field/EntityField.php b/core/modules/views/src/Plugin/views/field/EntityField.php
index d697d52031..8c0d467590 100644
--- a/core/modules/views/src/Plugin/views/field/EntityField.php
+++ b/core/modules/views/src/Plugin/views/field/EntityField.php
@@ -126,6 +126,11 @@ class EntityField extends FieldPluginBase implements CacheableDependencyInterfac
    */
   protected $entityFieldRenderer;
 
+  /**
+   * @var array
+   */
+  protected $group_fields;
+
   /**
    * Constructs a \Drupal\field\Plugin\views\field\Field object.
    *
diff --git a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php
index 0fe56cbc65..79dd3fd7c8 100644
--- a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php
+++ b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php
@@ -104,6 +104,21 @@ abstract class FieldPluginBase extends HandlerBase implements FieldHandlerInterf
    */
   protected $renderer;
 
+  /**
+   * @var string
+   */
+  public $last_render;
+
+  /**
+   * @var string
+   */
+  public $last_render_text;
+
+  /**
+   * @var array
+   */
+  public $last_tokens;
+
   /**
    * Keeps track of the last render index.
    *
@@ -111,6 +126,11 @@ abstract class FieldPluginBase extends HandlerBase implements FieldHandlerInterf
    */
   protected $lastRenderIndex;
 
+  /**
+   * @var array
+   */
+  public $options;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/field/Markup.php b/core/modules/views/src/Plugin/views/field/Markup.php
index 883bd56fb0..f3ea6c4497 100644
--- a/core/modules/views/src/Plugin/views/field/Markup.php
+++ b/core/modules/views/src/Plugin/views/field/Markup.php
@@ -21,6 +21,11 @@
  */
 class Markup extends FieldPluginBase {
 
+  /**
+   * @var string
+   */
+  protected $format;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/filter/BooleanOperator.php b/core/modules/views/src/Plugin/views/filter/BooleanOperator.php
index 4fae02498a..8199428aed 100644
--- a/core/modules/views/src/Plugin/views/filter/BooleanOperator.php
+++ b/core/modules/views/src/Plugin/views/filter/BooleanOperator.php
@@ -54,6 +54,16 @@ class BooleanOperator extends FilterPluginBase {
    */
   public $accept_null = FALSE;
 
+  /**
+   * @var string
+   */
+  public $value_value;
+
+  /**
+   * @var array
+   */
+  protected $valueOptions;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/filter/Bundle.php b/core/modules/views/src/Plugin/views/filter/Bundle.php
index 703173d79f..e6fc4744e5 100644
--- a/core/modules/views/src/Plugin/views/filter/Bundle.php
+++ b/core/modules/views/src/Plugin/views/filter/Bundle.php
@@ -45,6 +45,11 @@ class Bundle extends InOperator {
    */
   protected $bundleInfoService;
 
+  /**
+   * @var string
+   */
+  protected $real_field;
+
   /**
    * Constructs a Bundle object.
    *
diff --git a/core/modules/views/src/Plugin/views/join/Subquery.php b/core/modules/views/src/Plugin/views/join/Subquery.php
index 8ef5342d10..610ed077c9 100644
--- a/core/modules/views/src/Plugin/views/join/Subquery.php
+++ b/core/modules/views/src/Plugin/views/join/Subquery.php
@@ -19,6 +19,11 @@
  */
 class Subquery extends JoinPluginBase {
 
+  /**
+   * @var string
+   */
+  protected $left_query;
+
   /**
    * Constructs a Subquery object.
    */
diff --git a/core/modules/views/src/Plugin/views/query/QueryPluginBase.php b/core/modules/views/src/Plugin/views/query/QueryPluginBase.php
index 27277a5e3e..1eecf44772 100644
--- a/core/modules/views/src/Plugin/views/query/QueryPluginBase.php
+++ b/core/modules/views/src/Plugin/views/query/QueryPluginBase.php
@@ -47,6 +47,16 @@ abstract class QueryPluginBase extends PluginBase implements CacheableDependency
    */
   protected $limit;
 
+  /**
+   * @var int
+   */
+  protected $offset;
+
+  /**
+   * @var string
+   */
+  protected $groupOperator;
+
   /**
    * Generate a query and a countquery from all of the information supplied
    * to the object.
diff --git a/core/modules/views/src/Plugin/views/query/Sql.php b/core/modules/views/src/Plugin/views/query/Sql.php
index 3c584ba976..996606c2a4 100644
--- a/core/modules/views/src/Plugin/views/query/Sql.php
+++ b/core/modules/views/src/Plugin/views/query/Sql.php
@@ -137,6 +137,11 @@ class Sql extends QueryPluginBase {
    */
   protected $messenger;
 
+  /**
+   * @var array
+   */
+  protected $count_field;
+
   /**
    * Constructs a Sql object.
    *
diff --git a/core/modules/views/src/Plugin/views/relationship/EntityReverse.php b/core/modules/views/src/Plugin/views/relationship/EntityReverse.php
index 7f6d26b81b..86f09ec1ce 100644
--- a/core/modules/views/src/Plugin/views/relationship/EntityReverse.php
+++ b/core/modules/views/src/Plugin/views/relationship/EntityReverse.php
@@ -15,6 +15,16 @@
  */
 class EntityReverse extends RelationshipPluginBase {
 
+  /**
+   * @var \Drupal\views\Plugin\ViewsHandlerManager
+   */
+  protected ViewsHandlerManager $joinManager;
+
+  /**
+   * @var string
+   */
+  protected $first_alias;
+
   /**
    * Constructs an EntityReverse object.
    *
diff --git a/core/modules/views/src/Plugin/views/relationship/GroupwiseMax.php b/core/modules/views/src/Plugin/views/relationship/GroupwiseMax.php
index 3632b95cb3..8023d34277 100644
--- a/core/modules/views/src/Plugin/views/relationship/GroupwiseMax.php
+++ b/core/modules/views/src/Plugin/views/relationship/GroupwiseMax.php
@@ -59,6 +59,11 @@
  */
 class GroupwiseMax extends RelationshipPluginBase {
 
+  /**
+   * @var string
+   */
+  protected $subquery_namespace;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/row/RowPluginBase.php b/core/modules/views/src/Plugin/views/row/RowPluginBase.php
index e3d2c58933..9ab5888649 100644
--- a/core/modules/views/src/Plugin/views/row/RowPluginBase.php
+++ b/core/modules/views/src/Plugin/views/row/RowPluginBase.php
@@ -49,6 +49,18 @@ abstract class RowPluginBase extends PluginBase {
    */
   protected $usesFields = FALSE;
 
+  /**
+   * @var string
+   */
+  protected $base_field;
+
+  /**
+   * The field alias.
+   *
+   * @var string
+   */
+  protected $field_alias;
+
   /**
    * Returns the usesFields property.
    *
diff --git a/core/modules/views/src/Plugin/views/sort/SortPluginBase.php b/core/modules/views/src/Plugin/views/sort/SortPluginBase.php
index fcac77e013..8add84ae01 100644
--- a/core/modules/views/src/Plugin/views/sort/SortPluginBase.php
+++ b/core/modules/views/src/Plugin/views/sort/SortPluginBase.php
@@ -25,6 +25,11 @@
  */
 abstract class SortPluginBase extends HandlerBase implements CacheableDependencyInterface {
 
+  /**
+   * @var \Drupal\views\Plugin\views\HandlerBase
+   */
+  protected $handler;
+
   /**
    * Determine if a sort can be exposed.
    */
diff --git a/core/modules/views/src/Plugin/views/style/Rss.php b/core/modules/views/src/Plugin/views/style/Rss.php
index 6693c4863e..c12dfe1f8d 100644
--- a/core/modules/views/src/Plugin/views/style/Rss.php
+++ b/core/modules/views/src/Plugin/views/style/Rss.php
@@ -20,6 +20,16 @@
  */
 class Rss extends StylePluginBase {
 
+  /**
+   * @var array
+   */
+  protected $namespaces;
+
+  /**
+   * @var array
+   */
+  protected $channel_elements;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/ViewExecutable.php b/core/modules/views/src/ViewExecutable.php
index adf8ade188..d91993d545 100644
--- a/core/modules/views/src/ViewExecutable.php
+++ b/core/modules/views/src/ViewExecutable.php
@@ -72,6 +72,16 @@ class ViewExecutable {
    */
   protected $ajaxEnabled = FALSE;
 
+  /**
+   * @var string
+   */
+  protected $plugin_name;
+
+  /**
+   * @var string|float
+   */
+  protected $build_time;
+
   /**
    * Where the results of a query will go.
    *
diff --git a/core/modules/views/tests/src/Functional/Handler/FilterDateTest.php b/core/modules/views/tests/src/Functional/Handler/FilterDateTest.php
index 03774b2266..ed2a6de769 100644
--- a/core/modules/views/tests/src/Functional/Handler/FilterDateTest.php
+++ b/core/modules/views/tests/src/Functional/Handler/FilterDateTest.php
@@ -43,6 +43,16 @@ class FilterDateTest extends ViewTestBase {
    */
   public $dateFormatter;
 
+  /**
+   * @var array
+   */
+  protected $nodes;
+
+  /**
+   * @var array
+   */
+  protected $map;
+
   protected function setUp($import_test_views = TRUE, $modules = ['views_test_config']): void {
     parent::setUp($import_test_views, $modules);
     $this->dateFormatter = $this->container->get('date.formatter');
diff --git a/core/modules/views/tests/src/Functional/Plugin/DisplayTest.php b/core/modules/views/tests/src/Functional/Plugin/DisplayTest.php
index fa4637ab90..21412d4fe2 100644
--- a/core/modules/views/tests/src/Functional/Plugin/DisplayTest.php
+++ b/core/modules/views/tests/src/Functional/Plugin/DisplayTest.php
@@ -38,8 +38,7 @@ protected function setUp($import_test_views = TRUE, $modules = ['views_test_conf
 
     $this->enableViewsTestModule();
 
-    $this->adminUser = $this->drupalCreateUser(['administer views']);
-    $this->drupalLogin($this->adminUser);
+    $this->drupalLogin($this->drupalCreateUser(['administer views']));
 
     // Create 10 nodes.
     for ($i = 0; $i <= 10; $i++) {
diff --git a/core/modules/views/tests/src/Functional/Plugin/FilterTest.php b/core/modules/views/tests/src/Functional/Plugin/FilterTest.php
index 9a0edeaa2d..7b1c859497 100644
--- a/core/modules/views/tests/src/Functional/Plugin/FilterTest.php
+++ b/core/modules/views/tests/src/Functional/Plugin/FilterTest.php
@@ -39,8 +39,7 @@ protected function setUp($import_test_views = TRUE, $modules = ['views_test_conf
 
     $this->enableViewsTestModule();
 
-    $this->adminUser = $this->drupalCreateUser(['administer views']);
-    $this->drupalLogin($this->adminUser);
+    $this->drupalLogin($this->drupalCreateUser(['administer views']));
     $this->drupalCreateContentType(['type' => 'article', 'name' => 'Article']);
     $this->drupalCreateContentType(['type' => 'page', 'name' => 'Page']);
   }
diff --git a/core/modules/views/tests/src/Kernel/Entity/RowEntityRenderersTest.php b/core/modules/views/tests/src/Kernel/Entity/RowEntityRenderersTest.php
index 42eaa3b12d..881ac391ae 100644
--- a/core/modules/views/tests/src/Kernel/Entity/RowEntityRenderersTest.php
+++ b/core/modules/views/tests/src/Kernel/Entity/RowEntityRenderersTest.php
@@ -69,6 +69,16 @@ class RowEntityRenderersTest extends ViewsKernelTestBase {
    */
   protected $testIds;
 
+  /**
+   * @var array
+   */
+  protected $values;
+
+  /**
+   * @var array
+   */
+  protected $ids;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php b/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
index b22c6b1c3b..9164cb3d9e 100644
--- a/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
+++ b/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
@@ -80,8 +80,6 @@ protected function setUp($import_test_views = TRUE): void {
     $this->entityTypeManager = $this->container->get('entity_type.manager');
     $this->state = $this->container->get('state');
 
-    $this->database = $this->container->get('database');
-
     // Install every entity type's schema that wasn't installed in the parent
     // method.
     foreach (array_diff_key($this->entityTypeManager->getDefinitions(), array_flip(['user', 'entity_test'])) as $entity_type_id => $entity_type) {
diff --git a/core/modules/views/tests/src/Unit/Plugin/Derivative/ViewsLocalTaskTest.php b/core/modules/views/tests/src/Unit/Plugin/Derivative/ViewsLocalTaskTest.php
index 651310dd9e..d2b921c4a6 100644
--- a/core/modules/views/tests/src/Unit/Plugin/Derivative/ViewsLocalTaskTest.php
+++ b/core/modules/views/tests/src/Unit/Plugin/Derivative/ViewsLocalTaskTest.php
@@ -369,6 +369,8 @@ public function testGetDerivativeDefinitionsWithExistingLocalTask() {
  */
 class TestViewsLocalTask extends ViewsLocalTask {
 
+  protected $result;
+
   /**
    * Sets applicable views result.
    */
diff --git a/core/modules/views_ui/src/ViewUI.php b/core/modules/views_ui/src/ViewUI.php
index e2fed68ebd..63ac373f2f 100644
--- a/core/modules/views_ui/src/ViewUI.php
+++ b/core/modules/views_ui/src/ViewUI.php
@@ -135,6 +135,11 @@ class ViewUI implements ViewEntityInterface {
    */
   private $isUninstalling = FALSE;
 
+  /**
+   * @var string
+   */
+  protected $entityType;
+
   /**
    * Constructs a View UI object.
    *
@@ -536,7 +541,6 @@ public function renderPreview($display_id, $args = []) {
     $errors = $executable->validate();
     $executable->destroy();
     if (empty($errors)) {
-      $this->ajax = TRUE;
       $executable->live_preview = TRUE;
 
       // AJAX happens via HTTP POST but everything expects exposed data to
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php
index 423db6e284..1298093ccc 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php
@@ -31,8 +31,6 @@ class WorkspaceCacheContextTest extends BrowserTestBase {
    * Tests the 'workspace' cache context.
    */
   public function testWorkspaceCacheContext() {
-    $this->dumpHeaders = TRUE;
-
     $renderer = \Drupal::service('renderer');
     $cache_contexts_manager = \Drupal::service("cache_contexts_manager");
 
diff --git a/core/modules/workspaces/tests/src/Kernel/EntityReferenceSupportedNewEntitiesConstraintValidatorTest.php b/core/modules/workspaces/tests/src/Kernel/EntityReferenceSupportedNewEntitiesConstraintValidatorTest.php
index b5376cb329..99b8bd309c 100644
--- a/core/modules/workspaces/tests/src/Kernel/EntityReferenceSupportedNewEntitiesConstraintValidatorTest.php
+++ b/core/modules/workspaces/tests/src/Kernel/EntityReferenceSupportedNewEntitiesConstraintValidatorTest.php
@@ -28,6 +28,13 @@ class EntityReferenceSupportedNewEntitiesConstraintValidatorTest extends KernelT
     'path_alias',
   ];
 
+  /**
+   * The entity type manager.
+   *
+   * @var \Drupal\Core\Entity\EntityTypeManager
+   */
+  protected $entityTypeManager;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/phpstan-baseline.neon b/core/phpstan-baseline.neon
index 995bcfadbc..48cc53b911 100644
--- a/core/phpstan-baseline.neon
+++ b/core/phpstan-baseline.neon
@@ -35,51 +35,6 @@ parameters:
 			count: 1
 			path: includes/update.inc
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Component\\\\Diff\\\\Engine\\\\DiffEngine\\:\\:\\$in_seq\\.$#"
-			count: 3
-			path: lib/Drupal/Component/Diff/Engine/DiffEngine.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Component\\\\Diff\\\\Engine\\\\DiffEngine\\:\\:\\$lcs\\.$#"
-			count: 4
-			path: lib/Drupal/Component/Diff/Engine/DiffEngine.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Component\\\\Diff\\\\Engine\\\\DiffEngine\\:\\:\\$seq\\.$#"
-			count: 7
-			path: lib/Drupal/Component/Diff/Engine/DiffEngine.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Component\\\\Diff\\\\Engine\\\\DiffEngine\\:\\:\\$xchanged\\.$#"
-			count: 2
-			path: lib/Drupal/Component/Diff/Engine/DiffEngine.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Component\\\\Diff\\\\Engine\\\\DiffEngine\\:\\:\\$xind\\.$#"
-			count: 2
-			path: lib/Drupal/Component/Diff/Engine/DiffEngine.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Component\\\\Diff\\\\Engine\\\\DiffEngine\\:\\:\\$xv\\.$#"
-			count: 5
-			path: lib/Drupal/Component/Diff/Engine/DiffEngine.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Component\\\\Diff\\\\Engine\\\\DiffEngine\\:\\:\\$ychanged\\.$#"
-			count: 2
-			path: lib/Drupal/Component/Diff/Engine/DiffEngine.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Component\\\\Diff\\\\Engine\\\\DiffEngine\\:\\:\\$yind\\.$#"
-			count: 2
-			path: lib/Drupal/Component/Diff/Engine/DiffEngine.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Component\\\\Diff\\\\Engine\\\\DiffEngine\\:\\:\\$yv\\.$#"
-			count: 5
-			path: lib/Drupal/Component/Diff/Engine/DiffEngine.php
-
 		-
 			message: "#^Method Drupal\\\\Component\\\\Gettext\\\\PoMemoryWriter\\:\\:getHeader\\(\\) should return Drupal\\\\Component\\\\Gettext\\\\PoHeader but return statement is missing\\.$#"
 			count: 1
@@ -360,11 +315,6 @@ parameters:
 			count: 1
 			path: lib/Drupal/Core/Extension/Discovery/RecursiveExtensionFilterIterator.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Core\\\\Extension\\\\Extension\\:\\:\\$info\\.$#"
-			count: 3
-			path: lib/Drupal/Core/Extension/Extension.php
-
 		-
 			message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Entity\\\\BaseFieldOverride\\:\\:\\$original\\.$#"
 			count: 5
@@ -725,16 +675,6 @@ parameters:
 			count: 1
 			path: modules/block/src/BlockViewBuilder.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\block\\\\Plugin\\\\migrate\\\\process\\\\BlockTheme\\:\\:\\$themes\\.$#"
-			count: 2
-			path: modules/block/src/Plugin/migrate/process/BlockTheme.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\block_test\\\\Plugin\\\\Block\\\\TestAccessBlock\\:\\:\\$state\\.$#"
-			count: 2
-			path: modules/block/tests/modules/block_test/src/Plugin/Block/TestAccessBlock.php
-
 		-
 			message: "#^Method Drupal\\\\Tests\\\\block\\\\Functional\\\\Rest\\\\BlockResourceTestBase\\:\\:getNormalizedPostEntity\\(\\) should return array but return statement is missing\\.$#"
 			count: 1
@@ -805,16 +745,6 @@ parameters:
 			count: 1
 			path: modules/book/src/Form/BookOutlineForm.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\book\\\\Functional\\\\BookBreadcrumbTest\\:\\:\\$adminUser\\.$#"
-			count: 1
-			path: modules/book/tests/src/Functional/BookBreadcrumbTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\ckeditor\\\\Functional\\\\CKEditorToolbarButtonTest\\:\\:\\$admin_user\\.$#"
-			count: 2
-			path: modules/ckeditor/tests/src/Functional/CKEditorToolbarButtonTest.php
-
 		-
 			message: "#^Function _add_ajax_listeners_to_plugin_inputs not found\\.$#"
 			count: 2
@@ -830,36 +760,6 @@ parameters:
 			count: 2
 			path: modules/ckeditor5/ckeditor5.module
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\ckeditor5\\\\Functional\\\\AddedStylesheetsTest\\:\\:\\$adminUser\\.$#"
-			count: 1
-			path: modules/ckeditor5/tests/src/Functional/AddedStylesheetsTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\ckeditor5\\\\Functional\\\\AddedStylesheetsTest\\:\\:\\$editor\\.$#"
-			count: 1
-			path: modules/ckeditor5/tests/src/Functional/AddedStylesheetsTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\ckeditor5\\\\Functional\\\\CKEditor5QuickEditLibraryTest\\:\\:\\$adminUser\\.$#"
-			count: 1
-			path: modules/ckeditor5/tests/src/Functional/CKEditor5QuickEditLibraryTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\ckeditor5\\\\Functional\\\\MediaEntityMetadataApiTest\\:\\:\\$adminUser\\.$#"
-			count: 1
-			path: modules/ckeditor5/tests/src/Functional/MediaEntityMetadataApiTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\ckeditor5\\\\FunctionalJavascript\\\\CKEditor5FragmentLinkTest\\:\\:\\$account\\.$#"
-			count: 1
-			path: modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5FragmentLinkTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\ckeditor5\\\\FunctionalJavascript\\\\CKEditor5ToolbarTest\\:\\:\\$user\\.$#"
-			count: 1
-			path: modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5ToolbarTest.php
-
 		-
 			message: "#^Function color_palette_color_value\\(\\) should return string but return statement is missing\\.$#"
 			count: 1
@@ -895,56 +795,6 @@ parameters:
 			count: 1
 			path: modules/comment/src/Plugin/views/field/NodeNewComments.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\field\\\\StatisticsLastCommentName\\:\\:\\$uid\\.$#"
-			count: 2
-			path: modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\field\\\\StatisticsLastCommentName\\:\\:\\$user_field\\.$#"
-			count: 1
-			path: modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\field\\\\StatisticsLastCommentName\\:\\:\\$user_table\\.$#"
-			count: 1
-			path: modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\field\\\\StatisticsLastUpdated\\:\\:\\$node_table\\.$#"
-			count: 1
-			path: modules/comment/src/Plugin/views/field/StatisticsLastUpdated.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\filter\\\\StatisticsLastUpdated\\:\\:\\$node_table\\.$#"
-			count: 1
-			path: modules/comment/src/Plugin/views/filter/StatisticsLastUpdated.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\row\\\\Rss\\:\\:\\$field_alias\\.$#"
-			count: 1
-			path: modules/comment/src/Plugin/views/row/Rss.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\sort\\\\StatisticsLastCommentName\\:\\:\\$user_field\\.$#"
-			count: 1
-			path: modules/comment/src/Plugin/views/sort/StatisticsLastCommentName.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\sort\\\\StatisticsLastCommentName\\:\\:\\$user_table\\.$#"
-			count: 1
-			path: modules/comment/src/Plugin/views/sort/StatisticsLastCommentName.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\sort\\\\StatisticsLastUpdated\\:\\:\\$field_alias\\.$#"
-			count: 1
-			path: modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\sort\\\\StatisticsLastUpdated\\:\\:\\$node_table\\.$#"
-			count: 1
-			path: modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
@@ -955,11 +805,6 @@ parameters:
 			count: 1
 			path: modules/comment/tests/src/Functional/CommentNonNodeTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\comment\\\\Functional\\\\CommentTranslationUITest\\:\\:\\$nodeBundle\\.$#"
-			count: 3
-			path: modules/comment/tests/src/Functional/CommentTranslationUITest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
@@ -1005,11 +850,6 @@ parameters:
 			count: 1
 			path: modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestResourceTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\config\\\\Functional\\\\TransformedConfigExportImportUITest\\:\\:\\$webUser\\.$#"
-			count: 1
-			path: modules/config/tests/src/Functional/TransformedConfigExportImportUITest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
@@ -1050,16 +890,6 @@ parameters:
 			count: 1
 			path: modules/content_moderation/src/ModerationInformation.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\content_moderation\\\\Kernel\\\\ContentModerationStateTest\\:\\:\\$entityDefinitionUpdateManager\\.$#"
-			count: 10
-			path: modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\content_moderation\\\\Kernel\\\\ContentModerationStateTest\\:\\:\\$state\\.$#"
-			count: 21
-			path: modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 5
@@ -1085,46 +915,16 @@ parameters:
 			count: 1
 			path: modules/datetime/src/Plugin/Field/FieldType/DateTimeItem.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\datetime\\\\Functional\\\\DateTestBase\\:\\:\\$defaultSettings\\.$#"
-			count: 1
-			path: modules/datetime/tests/src/Functional/DateTestBase.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 4
 			path: modules/datetime/tests/src/Functional/DateTimeFieldTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\datetime\\\\Kernel\\\\Views\\\\ArgumentDateTimeTest\\:\\:\\$map\\.$#"
-			count: 16
-			path: modules/datetime/tests/src/Kernel/Views/ArgumentDateTimeTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\datetime\\\\Kernel\\\\Views\\\\DateTimeHandlerTestBase\\:\\:\\$map\\.$#"
-			count: 1
-			path: modules/datetime/tests/src/Kernel/Views/DateTimeHandlerTestBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\datetime\\\\Kernel\\\\Views\\\\FilterDateTest\\:\\:\\$map\\.$#"
-			count: 7
-			path: modules/datetime/tests/src/Kernel/Views/FilterDateTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\datetime\\\\Kernel\\\\Views\\\\FilterDateTimeTest\\:\\:\\$map\\.$#"
-			count: 7
-			path: modules/datetime/tests/src/Kernel/Views/FilterDateTimeTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
 			path: modules/datetime/tests/src/Kernel/Views/FilterDateTimeTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\datetime\\\\Kernel\\\\Views\\\\SortDateTimeTest\\:\\:\\$map\\.$#"
-			count: 4
-			path: modules/datetime/tests/src/Kernel/Views/SortDateTimeTest.php
-
 		-
 			message: "#^Method Drupal\\\\datetime_range\\\\Plugin\\\\Field\\\\FieldType\\\\DateRangeFieldItemList\\:\\:defaultValuesForm\\(\\) should return array but return statement is missing\\.$#"
 			count: 1
@@ -1135,11 +935,6 @@ parameters:
 			count: 1
 			path: modules/datetime_range/src/Plugin/Field/FieldType/DateRangeItem.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\datetime_range\\\\Kernel\\\\Views\\\\FilterDateTest\\:\\:\\$map\\.$#"
-			count: 2
-			path: modules/datetime_range/tests/src/Kernel/Views/FilterDateTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 3
@@ -1155,31 +950,6 @@ parameters:
 			count: 1
 			path: modules/editor/tests/src/Functional/Rest/EditorResourceTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\field\\\\Entity\\\\FieldConfig\\:\\:\\$original\\.$#"
-			count: 4
-			path: modules/field/src/Entity/FieldConfig.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\field\\\\Entity\\\\FieldStorageConfig\\:\\:\\$original\\.$#"
-			count: 6
-			path: modules/field/src/Entity/FieldStorageConfig.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Functional\\\\NestedFormTest\\:\\:\\$field\\.$#"
-			count: 2
-			path: modules/field/tests/src/Functional/NestedFormTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Functional\\\\NestedFormTest\\:\\:\\$fieldStorageSingle\\.$#"
-			count: 2
-			path: modules/field/tests/src/Functional/NestedFormTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Functional\\\\NestedFormTest\\:\\:\\$fieldStorageUnlimited\\.$#"
-			count: 2
-			path: modules/field/tests/src/Functional/NestedFormTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 2
@@ -1195,56 +965,11 @@ parameters:
 			count: 1
 			path: modules/field/tests/src/Functional/Rest/FieldStorageConfigResourceTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Kernel\\\\Entity\\\\Update\\\\SqlContentEntityStorageSchemaColumnTest\\:\\:\\$entityDefinitionUpdateManager\\.$#"
-			count: 10
-			path: modules/field/tests/src/Kernel/Entity/Update/SqlContentEntityStorageSchemaColumnTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Kernel\\\\Entity\\\\Update\\\\SqlContentEntityStorageSchemaColumnTest\\:\\:\\$state\\.$#"
-			count: 21
-			path: modules/field/tests/src/Kernel/Entity/Update/SqlContentEntityStorageSchemaColumnTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Kernel\\\\FieldKernelTestBase\\:\\:\\$entityId\\.$#"
-			count: 1
-			path: modules/field/tests/src/Kernel/FieldKernelTestBase.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
 			path: modules/field/tests/src/Kernel/Timestamp/TimestampFormatterTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Unit\\\\Plugin\\\\migrate\\\\process\\\\ProcessFieldTest\\:\\:\\$fieldManager\\.$#"
-			count: 3
-			path: modules/field/tests/src/Unit/Plugin/migrate/process/ProcessFieldTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Unit\\\\Plugin\\\\migrate\\\\process\\\\ProcessFieldTest\\:\\:\\$fieldPlugin\\.$#"
-			count: 2
-			path: modules/field/tests/src/Unit/Plugin/migrate/process/ProcessFieldTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Unit\\\\Plugin\\\\migrate\\\\process\\\\ProcessFieldTest\\:\\:\\$migrateExecutable\\.$#"
-			count: 2
-			path: modules/field/tests/src/Unit/Plugin/migrate/process/ProcessFieldTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Unit\\\\Plugin\\\\migrate\\\\process\\\\ProcessFieldTest\\:\\:\\$migration\\.$#"
-			count: 2
-			path: modules/field/tests/src/Unit/Plugin/migrate/process/ProcessFieldTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Unit\\\\Plugin\\\\migrate\\\\process\\\\ProcessFieldTest\\:\\:\\$plugin\\.$#"
-			count: 2
-			path: modules/field/tests/src/Unit/Plugin/migrate/process/ProcessFieldTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field\\\\Unit\\\\Plugin\\\\migrate\\\\process\\\\ProcessFieldTest\\:\\:\\$row\\.$#"
-			count: 3
-			path: modules/field/tests/src/Unit/Plugin/migrate/process/ProcessFieldTest.php
-
 		-
 			message: "#^Method Drupal\\\\field_ui\\\\FieldUI\\:\\:getOverviewRouteInfo\\(\\) should return Drupal\\\\Core\\\\Url but return statement is missing\\.$#"
 			count: 1
@@ -1265,21 +990,6 @@ parameters:
 			count: 1
 			path: modules/field_ui/src/Form/FieldStorageConfigEditForm.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\field_ui\\\\Plugin\\\\Derivative\\\\FieldUiLocalAction\\:\\:\\$routeProvider\\.$#"
-			count: 1
-			path: modules/field_ui/src/Plugin/Derivative/FieldUiLocalAction.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field_ui\\\\Functional\\\\ManageDisplayTest\\:\\:\\$type\\.$#"
-			count: 11
-			path: modules/field_ui/tests/src/Functional/ManageDisplayTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\field_ui\\\\Functional\\\\ManageDisplayTest\\:\\:\\$vocabulary\\.$#"
-			count: 3
-			path: modules/field_ui/tests/src/Functional/ManageDisplayTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
@@ -1300,16 +1010,6 @@ parameters:
 			count: 1
 			path: modules/file/src/Plugin/Field/FieldType/FileFieldItemList.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\file\\\\Plugin\\\\Field\\\\FieldWidget\\\\FileWidget\\:\\:\\$elementInfo\\.$#"
-			count: 2
-			path: modules/file/src/Plugin/Field/FieldWidget/FileWidget.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\file\\\\Plugin\\\\migrate\\\\process\\\\d6\\\\FieldFile\\:\\:\\$migration\\.$#"
-			count: 1
-			path: modules/file/src/Plugin/migrate/process/d6/FieldFile.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 2
@@ -1325,11 +1025,6 @@ parameters:
 			count: 1
 			path: modules/file/tests/src/Functional/FileUploadJsonBasicAuthTest.php
 
-		-
-			message: "#^Access to an undefined static property static\\(Drupal\\\\Tests\\\\file\\\\Functional\\\\FileUploadJsonCookieTest\\)\\:\\:\\$entityTypeId\\.$#"
-			count: 1
-			path: modules/file/tests/src/Functional/FileUploadJsonCookieTest.php
-
 		-
 			message: "#^Call to an undefined method Drupal\\\\Tests\\\\file\\\\Functional\\\\FileUploadJsonCookieTest\\:\\:getExpectedUnauthorizedEntityAccessCacheability\\(\\)\\.$#"
 			count: 1
@@ -1355,16 +1050,6 @@ parameters:
 			count: 1
 			path: modules/filter/src/FilterProcessResult.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\filter\\\\Plugin\\\\migrate\\\\process\\\\d6\\\\FilterFormatPermission\\:\\:\\$migration\\.$#"
-			count: 1
-			path: modules/filter/src/Plugin/migrate/process/d6/FilterFormatPermission.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\filter\\\\Functional\\\\FilterHtmlImageSecureTest\\:\\:\\$node\\.$#"
-			count: 2
-			path: modules/filter/tests/src/Functional/FilterHtmlImageSecureTest.php
-
 		-
 			message: "#^Method Drupal\\\\Tests\\\\filter\\\\Functional\\\\Rest\\\\FilterFormatResourceTestBase\\:\\:getNormalizedPostEntity\\(\\) should return array but return statement is missing\\.$#"
 			count: 1
@@ -1375,11 +1060,6 @@ parameters:
 			count: 1
 			path: modules/forum/src/ForumManager.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\help_topics\\\\Plugin\\\\HelpSection\\\\HelpTopicSection\\:\\:\\$translationManager\\.$#"
-			count: 3
-			path: modules/help_topics/src/Plugin/HelpSection/HelpTopicSection.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 3
@@ -1420,11 +1100,6 @@ parameters:
 			count: 1
 			path: modules/image/tests/src/Functional/Rest/ImageStyleResourceTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\image\\\\Unit\\\\ImageStyleTest\\:\\:\\$provider\\.$#"
-			count: 1
-			path: modules/image/tests/src/Unit/ImageStyleTest.php
-
 		-
 			message: "#^Method Drupal\\\\jsonapi\\\\JsonApiResource\\\\ResourceIdentifier\\:\\:getDataReferencePropertyName\\(\\) should return string but return statement is missing\\.$#"
 			count: 1
@@ -1570,11 +1245,6 @@ parameters:
 			count: 1
 			path: modules/jsonapi/tests/src/Functional/ResponsiveImageStyleTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Functional\\\\RestJsonApiUnsupported\\:\\:\\$httpClient\\.$#"
-			count: 1
-			path: modules/jsonapi/tests/src/Functional/RestJsonApiUnsupported.php
-
 		-
 			message: "#^Method Drupal\\\\Tests\\\\jsonapi\\\\Functional\\\\RestJsonApiUnsupported\\:\\:getExpectedUnauthorizedAccessCacheability\\(\\) should return Drupal\\\\Core\\\\Cache\\\\RefinableCacheableDependencyInterface but return statement is missing\\.$#"
 			count: 1
@@ -1625,81 +1295,6 @@ parameters:
 			count: 1
 			path: modules/jsonapi/tests/src/Functional/WorkflowTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Controller\\\\EntityResourceTest\\:\\:\\$node4\\.$#"
-			count: 1
-			path: modules/jsonapi/tests/src/Kernel/Controller/EntityResourceTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\JsonApiDocumentTopLevelNormalizerTest\\:\\:\\$nodeType\\.$#"
-			count: 2
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\JsonApiDocumentTopLevelNormalizerTest\\:\\:\\$term1\\.$#"
-			count: 11
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\JsonApiDocumentTopLevelNormalizerTest\\:\\:\\$term2\\.$#"
-			count: 4
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\JsonApiDocumentTopLevelNormalizerTest\\:\\:\\$user2\\.$#"
-			count: 9
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\JsonApiDocumentTopLevelNormalizerTest\\:\\:\\$vocabulary\\.$#"
-			count: 2
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\RelationshipNormalizerTest\\:\\:\\$image1\\.$#"
-			count: 1
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/RelationshipNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\RelationshipNormalizerTest\\:\\:\\$image2\\.$#"
-			count: 1
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/RelationshipNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\RelationshipNormalizerTest\\:\\:\\$normalizer\\.$#"
-			count: 2
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/RelationshipNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\RelationshipNormalizerTest\\:\\:\\$referencer\\.$#"
-			count: 3
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/RelationshipNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\RelationshipNormalizerTest\\:\\:\\$referencingResourceType\\.$#"
-			count: 2
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/RelationshipNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\RelationshipNormalizerTest\\:\\:\\$user1\\.$#"
-			count: 1
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/RelationshipNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Normalizer\\\\RelationshipNormalizerTest\\:\\:\\$user2\\.$#"
-			count: 1
-			path: modules/jsonapi/tests/src/Kernel/Normalizer/RelationshipNormalizerTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Query\\\\FilterTest\\:\\:\\$fieldResolver\\.$#"
-			count: 8
-			path: modules/jsonapi/tests/src/Kernel/Query/FilterTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Kernel\\\\Serializer\\\\SerializerTest\\:\\:\\$user\\.$#"
-			count: 2
-			path: modules/jsonapi/tests/src/Kernel/Serializer/SerializerTest.php
-
 		-
 			message: "#^Method Drupal\\\\language\\\\Form\\\\LanguageAddForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
 			count: 1
@@ -1710,16 +1305,6 @@ parameters:
 			count: 1
 			path: modules/language/src/Form/LanguageEditForm.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\language\\\\LanguageNegotiationMethodManager\\:\\:\\$cacheKeyPrefix\\.$#"
-			count: 1
-			path: modules/language/src/LanguageNegotiationMethodManager.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\language\\\\Functional\\\\LanguageLocaleListTest\\:\\:\\$storage\\.$#"
-			count: 3
-			path: modules/language/tests/src/Functional/LanguageLocaleListTest.php
-
 		-
 			message: "#^Method Drupal\\\\Tests\\\\language\\\\Functional\\\\Rest\\\\ConfigurableLanguageResourceTestBase\\:\\:getNormalizedPostEntity\\(\\) should return array but return statement is missing\\.$#"
 			count: 1
@@ -1730,11 +1315,6 @@ parameters:
 			count: 1
 			path: modules/language/tests/src/Functional/Rest/ContentLanguageSettingsResourceTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\language\\\\Unit\\\\LanguageNegotiationUrlTest\\:\\:\\$languages\\.$#"
-			count: 3
-			path: modules/language/tests/src/Unit/LanguageNegotiationUrlTest.php
-
 		-
 			message: "#^Method Drupal\\\\layout_builder_test\\\\Plugin\\\\SectionStorage\\\\TestStateBasedSectionStorage\\:\\:access\\(\\) should return bool\\|Drupal\\\\Core\\\\Access\\\\AccessResultInterface but return statement is missing\\.$#"
 			count: 1
@@ -1830,11 +1410,6 @@ parameters:
 			count: 1
 			path: modules/locale/src/LocaleDefaultConfigStorage.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\locale\\\\LocaleEvent\\:\\:\\$lids\\.$#"
-			count: 2
-			path: modules/locale/src/LocaleEvent.php
-
 		-
 			message: "#^Method Drupal\\\\locale\\\\LocaleProjectStorage\\:\\:deleteAll\\(\\) should return array but return statement is missing\\.$#"
 			count: 1
@@ -1860,11 +1435,6 @@ parameters:
 			count: 1
 			path: modules/locale/src/StringDatabaseStorage.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\locale\\\\Functional\\\\LocaleConfigTranslationTest\\:\\:\\$storage\\.$#"
-			count: 9
-			path: modules/locale/tests/src/Functional/LocaleConfigTranslationTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 5
@@ -1880,16 +1450,6 @@ parameters:
 			count: 2
 			path: modules/locale/tests/src/Functional/LocaleUpdateInterfaceTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\locale\\\\Unit\\\\LocaleTranslationTest\\:\\:\\$cache\\.$#"
-			count: 2
-			path: modules/locale/tests/src/Unit/LocaleTranslationTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\locale\\\\Unit\\\\LocaleTranslationTest\\:\\:\\$lock\\.$#"
-			count: 2
-			path: modules/locale/tests/src/Unit/LocaleTranslationTest.php
-
 		-
 			message: "#^Method Drupal\\\\media\\\\MediaTypeForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
 			count: 1
@@ -1900,21 +1460,11 @@ parameters:
 			count: 1
 			path: modules/media/tests/src/Functional/Rest/MediaTypeResourceTestBase.php
 
-		-
-			message: "#^Access to an undefined property class@anonymous/core/modules/media/tests/src/Kernel/OEmbedResourceConstraintValidatorTest\\.php\\:105\\:\\:\\$entity\\.$#"
-			count: 2
-			path: modules/media/tests/src/Kernel/OEmbedResourceConstraintValidatorTest.php
-
 		-
 			message: "#^Method Drupal\\\\Tests\\\\media\\\\Kernel\\\\Views\\\\RevisionUserTest\\:\\:assertIdenticalResultsetHelper\\(\\) should return bool but return statement is missing\\.$#"
 			count: 1
 			path: modules/media/tests/src/Kernel/Views/RevisionUserTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\media_library\\\\Kernel\\\\MediaLibraryWidgetTest\\:\\:\\$baseField\\.$#"
-			count: 2
-			path: modules/media_library/tests/src/Kernel/MediaLibraryWidgetTest.php
-
 		-
 			message: "#^Method Drupal\\\\menu_link_content\\\\Form\\\\MenuLinkContentForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
 			count: 1
@@ -1940,11 +1490,6 @@ parameters:
 			count: 1
 			path: modules/migrate/src/Plugin/migrate/destination/Config.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\migrate\\\\Plugin\\\\migrate\\\\destination\\\\Entity\\:\\:\\$entityFieldManager\\.$#"
-			count: 1
-			path: modules/migrate/src/Plugin/migrate/destination/Entity.php
-
 		-
 			message: "#^Call to an undefined method Drupal\\\\migrate\\\\Plugin\\\\migrate\\\\destination\\\\Entity\\:\\:processStubRow\\(\\)\\.$#"
 			count: 1
@@ -1965,16 +1510,6 @@ parameters:
 			count: 1
 			path: modules/migrate/src/Plugin/migrate/destination/NullDestination.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\migrate\\\\Plugin\\\\migrate\\\\process\\\\Route\\:\\:\\$migration\\.$#"
-			count: 1
-			path: modules/migrate/src/Plugin/migrate/process/Route.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\migrate\\\\Kernel\\\\MigrateTestBase\\:\\:\\$databaseDumpFiles\\.$#"
-			count: 1
-			path: modules/migrate/tests/src/Kernel/MigrateTestBase.php
-
 		-
 			message: "#^Call to an undefined static method static\\(Drupal\\\\Tests\\\\migrate\\\\Kernel\\\\MigrateTestBase\\)\\:\\:migrateDumpAlter\\(\\)\\.$#"
 			count: 1
@@ -2005,16 +1540,6 @@ parameters:
 			count: 1
 			path: modules/migrate/tests/src/Unit/TestMigrateExecutable.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\migrate\\\\Unit\\\\destination\\\\TestPerComponentEntityDisplay\\:\\:\\$entity\\.$#"
-			count: 2
-			path: modules/migrate/tests/src/Unit/destination/PerComponentEntityDisplayTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\migrate\\\\Unit\\\\destination\\\\TestPerComponentEntityFormDisplay\\:\\:\\$entity\\.$#"
-			count: 2
-			path: modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php
-
 		-
 			message: """
 				#^Cannot unset offset 'menu_ui' on array\\{system\\: 'finished\\:
@@ -2193,46 +1718,11 @@ parameters:
 			count: 1
 			path: modules/node/src/NodeViewBuilder.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\node\\\\Plugin\\\\views\\\\argument\\\\Type\\:\\:\\$name_alias\\.$#"
-			count: 1
-			path: modules/node/src/Plugin/views/argument/Type.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\node\\\\Plugin\\\\views\\\\row\\\\Rss\\:\\:\\$field_alias\\.$#"
-			count: 2
-			path: modules/node/src/Plugin/views/row/Rss.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\node\\\\Functional\\\\NodeAccessCacheabilityTest\\:\\:\\$dumpHeaders\\.$#"
-			count: 1
-			path: modules/node/tests/src/Functional/NodeAccessCacheabilityTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\node\\\\Functional\\\\NodeAccessGrantsCacheContextTest\\:\\:\\$noAccessUser2\\.$#"
-			count: 1
-			path: modules/node/tests/src/Functional/NodeAccessGrantsCacheContextTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\node\\\\Functional\\\\NodeAccessGrantsCacheContextTest\\:\\:\\$userMapping\\.$#"
-			count: 2
-			path: modules/node/tests/src/Functional/NodeAccessGrantsCacheContextTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\node\\\\Functional\\\\NodeAccessPagerTest\\:\\:\\$webUser\\.$#"
-			count: 3
-			path: modules/node/tests/src/Functional/NodeAccessPagerTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
 			path: modules/node/tests/src/Functional/NodeAdminTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\node\\\\Functional\\\\NodeQueryAlterTest\\:\\:\\$noAccessUser2\\.$#"
-			count: 2
-			path: modules/node/tests/src/Functional/NodeQueryAlterTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
@@ -2258,16 +1748,6 @@ parameters:
 			count: 1
 			path: modules/node/tests/src/Functional/NodeTranslationUITest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\node\\\\Functional\\\\PagePreviewTest\\:\\:\\$term\\.$#"
-			count: 7
-			path: modules/node/tests/src/Functional/PagePreviewTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\node\\\\Functional\\\\PagePreviewTest\\:\\:\\$vocabulary\\.$#"
-			count: 1
-			path: modules/node/tests/src/Functional/PagePreviewTest.php
-
 		-
 			message: "#^Method Drupal\\\\Tests\\\\node\\\\Functional\\\\Rest\\\\NodeTypeResourceTestBase\\:\\:getNormalizedPostEntity\\(\\) should return array but return statement is missing\\.$#"
 			count: 1
@@ -2283,11 +1763,6 @@ parameters:
 			count: 1
 			path: modules/node/tests/src/Functional/Views/NodeIntegrationTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\node\\\\Functional\\\\Views\\\\Wizard\\\\HiddenTaxonomyTermReferenceFieldWizardTest\\:\\:\\$fieldName\\.$#"
-			count: 1
-			path: modules/node/tests/src/Functional/Views/Wizard/HiddenTaxonomyTermReferenceFieldWizardTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 5
@@ -2328,41 +1803,6 @@ parameters:
 			count: 1
 			path: modules/options/src/Plugin/Field/FieldType/ListStringItem.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\options\\\\Plugin\\\\views\\\\argument\\\\NumberListField\\:\\:\\$name_alias\\.$#"
-			count: 1
-			path: modules/options/src/Plugin/views/argument/NumberListField.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\options\\\\Plugin\\\\views\\\\argument\\\\StringListField\\:\\:\\$name_alias\\.$#"
-			count: 1
-			path: modules/options/src/Plugin/views/argument/StringListField.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\options\\\\Functional\\\\OptionsDynamicValuesTestBase\\:\\:\\$field\\.$#"
-			count: 1
-			path: modules/options/tests/src/Functional/OptionsDynamicValuesTestBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\options\\\\Functional\\\\OptionsDynamicValuesTestBase\\:\\:\\$test\\.$#"
-			count: 1
-			path: modules/options/tests/src/Functional/OptionsDynamicValuesTestBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\options\\\\Functional\\\\OptionsDynamicValuesValidationTest\\:\\:\\$test\\.$#"
-			count: 2
-			path: modules/options/tests/src/Functional/OptionsDynamicValuesValidationTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\options\\\\Functional\\\\OptionsSelectDynamicValuesTest\\:\\:\\$test\\.$#"
-			count: 2
-			path: modules/options/tests/src/Functional/OptionsSelectDynamicValuesTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\options\\\\Kernel\\\\Views\\\\ViewsDataTest\\:\\:\\$field\\.$#"
-			count: 1
-			path: modules/options/tests/src/Kernel/Views/ViewsDataTest.php
-
 		-
 			message: "#^Method Drupal\\\\path\\\\PathAliasForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
 			count: 1
@@ -2413,11 +1853,6 @@ parameters:
 			count: 1
 			path: modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleResourceTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\responsive_image\\\\FunctionalJavascript\\\\ResponsiveImageFieldUiTest\\:\\:\\$type\\.$#"
-			count: 2
-			path: modules/responsive_image/tests/src/FunctionalJavascript/ResponsiveImageFieldUiTest.php
-
 		-
 			message: "#^Method Drupal\\\\rest\\\\Plugin\\\\Deriver\\\\EntityDeriver\\:\\:getDerivativeDefinition\\(\\) should return array but return statement is missing\\.$#"
 			count: 1
@@ -2448,11 +1883,6 @@ parameters:
 			count: 1
 			path: modules/rest/tests/src/Functional/Rest/RestResourceConfigResourceTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\rest\\\\Unit\\\\CollectRoutesTest\\:\\:\\$view\\.$#"
-			count: 1
-			path: modules/rest/tests/src/Unit/CollectRoutesTest.php
-
 		-
 			message: "#^Method Drupal\\\\search\\\\Form\\\\SearchPageAddForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
 			count: 1
@@ -2468,26 +1898,11 @@ parameters:
 			count: 1
 			path: modules/search/src/Form/SearchPageFormBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\search\\\\Plugin\\\\views\\\\argument\\\\Search\\:\\:\\$operator\\.$#"
-			count: 1
-			path: modules/search/src/Plugin/views/argument/Search.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\search\\\\Plugin\\\\views\\\\argument\\\\Search\\:\\:\\$search_score\\.$#"
-			count: 1
-			path: modules/search/src/Plugin/views/argument/Search.php
-
 		-
 			message: "#^Method Drupal\\\\search\\\\Plugin\\\\views\\\\field\\\\Score\\:\\:render\\(\\) should return Drupal\\\\Component\\\\Render\\\\MarkupInterface\\|string but return statement is missing\\.$#"
 			count: 1
 			path: modules/search/src/Plugin/views/field/Score.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\search\\\\Plugin\\\\views\\\\filter\\\\Search\\:\\:\\$search_score\\.$#"
-			count: 1
-			path: modules/search/src/Plugin/views/filter/Search.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
@@ -2548,16 +1963,6 @@ parameters:
 			count: 1
 			path: modules/shortcut/tests/src/Functional/Rest/ShortcutSetResourceTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\statistics\\\\Functional\\\\StatisticsLoggingTest\\:\\:\\$node\\.$#"
-			count: 6
-			path: modules/statistics/tests/src/Functional/StatisticsLoggingTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\statistics\\\\Functional\\\\Views\\\\IntegrationTest\\:\\:\\$deniedUser\\.$#"
-			count: 2
-			path: modules/statistics/tests/src/Functional/Views/IntegrationTest.php
-
 		-
 			message: "#^Method Drupal\\\\system\\\\Controller\\\\BatchController\\:\\:batchPage\\(\\) should return array\\|Symfony\\\\Component\\\\HttpFoundation\\\\Response but return statement is missing\\.$#"
 			count: 1
@@ -2598,11 +2003,6 @@ parameters:
 			count: 6
 			path: modules/system/system.tokens.inc
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\accept_header_routing_test\\\\AcceptHeaderMiddleware\\:\\:\\$app\\.$#"
-			count: 2
-			path: modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php
-
 		-
 			message: "#^Class Drupal\\\\advisory_feed_test\\\\AdvisoriesTestHttpClient extends @final class GuzzleHttp\\\\Client\\.$#"
 			count: 1
@@ -2633,31 +2033,6 @@ parameters:
 			count: 1
 			path: modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleResourceTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\entity_test\\\\Functional\\\\Rest\\\\EntityTestResourceTestBase\\:\\:\\$entityDefinitionUpdateManager\\.$#"
-			count: 10
-			path: modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestResourceTestBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\entity_test\\\\Functional\\\\Rest\\\\EntityTestResourceTestBase\\:\\:\\$state\\.$#"
-			count: 21
-			path: modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestResourceTestBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\error_service_test\\\\Controller\\\\LonelyMonkeyController\\:\\:\\$class\\.$#"
-			count: 1
-			path: modules/system/tests/modules/error_service_test/src/Controller/LonelyMonkeyController.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\error_service_test\\\\LonelyMonkeyClass\\:\\:\\$connection\\.$#"
-			count: 1
-			path: modules/system/tests/modules/error_service_test/src/LonelyMonkeyClass.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\error_service_test\\\\MonkeysInTheControlRoom\\:\\:\\$settings\\.$#"
-			count: 2
-			path: modules/system/tests/modules/error_service_test/src/MonkeysInTheControlRoom.php
-
 		-
 			message: "#^Result of function usleep \\(void\\) is used\\.$#"
 			count: 1
@@ -2688,21 +2063,6 @@ parameters:
 			count: 1
 			path: modules/system/tests/modules/service_provider_test/src/TestFileUsage.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\system\\\\Functional\\\\Cache\\\\SessionExistsCacheContextTest\\:\\:\\$dumpHeaders\\.$#"
-			count: 1
-			path: modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\system\\\\Functional\\\\Entity\\\\EntityListBuilderTest\\:\\:\\$webUser\\.$#"
-			count: 1
-			path: modules/system/tests/src/Functional/Entity/EntityListBuilderTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\system\\\\Functional\\\\FileTransfer\\\\FileTransferTest\\:\\:\\$testConnection\\.$#"
-			count: 3
-			path: modules/system/tests/src/Functional/FileTransfer/FileTransferTest.php
-
 		-
 			message: "#^Instantiated class Drupal\\\\Tests\\\\system\\\\Functional\\\\FileTransfer\\\\Exception not found\\.$#"
 			count: 1
@@ -2723,36 +2083,6 @@ parameters:
 			count: 1
 			path: modules/system/tests/src/Functional/Rest/MenuResourceTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\system\\\\Functional\\\\System\\\\SiteMaintenanceTest\\:\\:\\$user\\.$#"
-			count: 6
-			path: modules/system/tests/src/Functional/System/SiteMaintenanceTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\system\\\\Functional\\\\System\\\\ThemeTest\\:\\:\\$node\\.$#"
-			count: 3
-			path: modules/system/tests/src/Functional/System/ThemeTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\system\\\\Functional\\\\Theme\\\\FastTest\\:\\:\\$account\\.$#"
-			count: 4
-			path: modules/system/tests/src/Functional/Theme/FastTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\system\\\\Functional\\\\Theme\\\\ToolbarClaroOverridesTest\\:\\:\\$themeManager\\.$#"
-			count: 1
-			path: modules/system/tests/src/Functional/Theme/ToolbarClaroOverridesTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\system\\\\Functional\\\\UpdateSystem\\\\UpdateRemovedPostUpdateTest\\:\\:\\$updateUrl\\.$#"
-			count: 4
-			path: modules/system/tests/src/Functional/UpdateSystem/UpdateRemovedPostUpdateTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\system\\\\Functional\\\\UpdateSystem\\\\UpdateRemovedPostUpdateTest\\:\\:\\$updateUser\\.$#"
-			count: 2
-			path: modules/system/tests/src/Functional/UpdateSystem/UpdateRemovedPostUpdateTest.php
-
 		-
 			message: "#^Call to an undefined method Drupal\\\\Tests\\\\system\\\\Kernel\\\\Common\\\\PageRenderTest\\:\\:error\\(\\)\\.$#"
 			count: 2
@@ -2768,11 +2098,6 @@ parameters:
 			count: 1
 			path: modules/system/tests/src/Kernel/Token/TokenReplaceKernelTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\system\\\\Unit\\\\Breadcrumbs\\\\TestPathBasedBreadcrumbBuilder\\:\\:\\$linkGenerator\\.$#"
-			count: 1
-			path: modules/system/tests/src/Unit/Breadcrumbs/PathBasedBreadcrumbBuilderTest.php
-
 		-
 			message: "#^Method Drupal\\\\Tests\\\\system\\\\Unit\\\\Breadcrumbs\\\\TestPathBasedBreadcrumbBuilder\\:\\:setStringTranslation\\(\\) should return \\$this\\(Drupal\\\\Tests\\\\system\\\\Unit\\\\Breadcrumbs\\\\TestPathBasedBreadcrumbBuilder\\) but return statement is missing\\.$#"
 			count: 1
@@ -2783,11 +2108,6 @@ parameters:
 			count: 1
 			path: modules/taxonomy/src/Plugin/migrate/source/d7/TermTranslation.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\taxonomy\\\\Plugin\\\\views\\\\argument\\\\IndexTidDepthModifier\\:\\:\\$position\\.$#"
-			count: 1
-			path: modules/taxonomy/src/Plugin/views/argument/IndexTidDepthModifier.php
-
 		-
 			message: "#^Call to function unset\\(\\) contains undefined variable \\$handler\\.$#"
 			count: 1
@@ -2863,11 +2183,6 @@ parameters:
 			count: 1
 			path: modules/tracker/tests/src/Kernel/Views/TrackerUserUidTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\update\\\\UpdateProcessor\\:\\:\\$fetchTasks\\.$#"
-			count: 2
-			path: modules/update/src/UpdateProcessor.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 4
@@ -2903,16 +2218,6 @@ parameters:
 			count: 1
 			path: modules/user/src/Plugin/views/field/UserData.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\user\\\\Plugin\\\\views\\\\filter\\\\Current\\:\\:\\$value_value\\.$#"
-			count: 1
-			path: modules/user/src/Plugin/views/filter/Current.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\user\\\\Plugin\\\\views\\\\filter\\\\Name\\:\\:\\$validated_exposed_input\\.$#"
-			count: 1
-			path: modules/user/src/Plugin/views/filter/Name.php
-
 		-
 			message: "#^Method Drupal\\\\user\\\\ProfileForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
 			count: 1
@@ -2953,11 +2258,6 @@ parameters:
 			count: 1
 			path: modules/user/tests/src/Functional/UserPictureTest.php
 
-		-
-			message: "#^Access to an undefined static property static\\(Drupal\\\\Tests\\\\user\\\\Functional\\\\UserRegistrationRestTest\\)\\:\\:\\$entityTypeId\\.$#"
-			count: 1
-			path: modules/user/tests/src/Functional/UserRegistrationRestTest.php
-
 		-
 			message: "#^Call to an undefined method Drupal\\\\Tests\\\\user\\\\Functional\\\\UserRegistrationRestTest\\:\\:getExpectedUnauthorizedEntityAccessCacheability\\(\\)\\.$#"
 			count: 1
@@ -3003,26 +2303,6 @@ parameters:
 			count: 1
 			path: modules/views/src/Form/ViewsFormMainForm.php
 
-		-
-			message: "#^Access to an undefined property \\$this\\(Drupal\\\\views\\\\ManyToOneHelper\\)\\:\\:\\$handler\\.$#"
-			count: 1
-			path: modules/views/src/ManyToOneHelper.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\ManyToOneHelper\\:\\:\\$definition\\.$#"
-			count: 1
-			path: modules/views/src/ManyToOneHelper.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\ManyToOneHelper\\:\\:\\$handler\\.$#"
-			count: 72
-			path: modules/views/src/ManyToOneHelper.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\HandlerBase\\:\\:\\$is_handler\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/HandlerBase.php
-
 		-
 			message: "#^Call to an undefined method \\$this\\(Drupal\\\\views\\\\Plugin\\\\views\\\\HandlerBase\\)\\:\\:getFormula\\(\\)\\.$#"
 			count: 1
@@ -3038,141 +2318,11 @@ parameters:
 			count: 1
 			path: modules/views/src/Plugin/views/area/HTTPStatusCode.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\ArgumentPluginBase\\:\\:\\$argument_validated\\.$#"
-			count: 2
-			path: modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\ArgumentPluginBase\\:\\:\\$base_alias\\.$#"
-			count: 3
-			path: modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\ArgumentPluginBase\\:\\:\\$count_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\ArgumentPluginBase\\:\\:\\$is_default\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\ArgumentPluginBase\\:\\:\\$name_alias\\.$#"
-			count: 5
-			path: modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\ArgumentPluginBase\\:\\:\\$name_table_alias\\.$#"
-			count: 3
-			path: modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\ArgumentPluginBase\\:\\:\\$operator\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\ArgumentPluginBase\\:\\:\\$position\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
 			path: modules/views/src/Plugin/views/argument/Date.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\DayDate\\:\\:\\$base_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/DayDate.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\DayDate\\:\\:\\$name_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/DayDate.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\Formula\\:\\:\\$base_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/Formula.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\Formula\\:\\:\\$name_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/Formula.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\FullDate\\:\\:\\$name_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/FullDate.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\LanguageArgument\\:\\:\\$name_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/LanguageArgument.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\ManyToOne\\:\\:\\$base_alias\\.$#"
-			count: 2
-			path: modules/views/src/Plugin/views/argument/ManyToOne.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\ManyToOne\\:\\:\\$helper\\.$#"
-			count: 5
-			path: modules/views/src/Plugin/views/argument/ManyToOne.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\ManyToOne\\:\\:\\$operator\\.$#"
-			count: 4
-			path: modules/views/src/Plugin/views/argument/ManyToOne.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\MonthDate\\:\\:\\$base_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/MonthDate.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\MonthDate\\:\\:\\$name_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/MonthDate.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\StringArgument\\:\\:\\$base_alias\\.$#"
-			count: 3
-			path: modules/views/src/Plugin/views/argument/StringArgument.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\StringArgument\\:\\:\\$helper\\.$#"
-			count: 5
-			path: modules/views/src/Plugin/views/argument/StringArgument.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\StringArgument\\:\\:\\$operator\\.$#"
-			count: 4
-			path: modules/views/src/Plugin/views/argument/StringArgument.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\WeekDate\\:\\:\\$name_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/WeekDate.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument\\\\YearMonthDate\\:\\:\\$name_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument/YearMonthDate.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument_default\\\\ArgumentDefaultPluginBase\\:\\:\\$option_name\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\argument_validator\\\\ArgumentValidatorPluginBase\\:\\:\\$option_name\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php
-
 		-
 			message: "#^Undefined variable\\: \\$arg$#"
 			count: 1
@@ -3188,41 +2338,11 @@ parameters:
 			count: 1
 			path: modules/views/src/Plugin/views/cache/Time.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\display\\\\DisplayPluginBase\\:\\:\\$default_display\\.$#"
-			count: 2
-			path: modules/views/src/Plugin/views/display/DisplayPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\display\\\\DisplayPluginBase\\:\\:\\$has_exposed\\.$#"
-			count: 3
-			path: modules/views/src/Plugin/views/display/DisplayPluginBase.php
-
 		-
 			message: "#^Cannot unset offset 'items_per_page' on array\\{access\\: array\\{'access'\\}, cache\\: array\\{'cache'\\}, title\\: array\\{'title'\\}, css_class\\: array\\{'css_class'\\}, use_ajax\\: array\\{'use_ajax'\\}, hide_attachment_summary\\: array\\{'hide_attachment…'\\}, show_admin_links\\: array\\{'show_admin_links'\\}, group_by\\: array\\{'group_by'\\}, \\.\\.\\.\\}\\.$#"
 			count: 1
 			path: modules/views/src/Plugin/views/display/DisplayPluginBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\display\\\\EntityReference\\:\\:\\$id_field_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/display/EntityReference.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\Boolean\\:\\:\\$formats\\.$#"
-			count: 5
-			path: modules/views/src/Plugin/views/field/Boolean.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\BulkForm\\:\\:\\$last_render\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/field/BulkForm.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\Counter\\:\\:\\$last_render\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/field/Counter.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 2
@@ -3233,11 +2353,6 @@ parameters:
 			count: 1
 			path: modules/views/src/Plugin/views/field/Date.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\EntityField\\:\\:\\$group_fields\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/field/EntityField.php
-
 		-
 			message: "#^Method Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\EntityField\\:\\:getFieldStorageDefinition\\(\\) should return Drupal\\\\Core\\\\Field\\\\FieldStorageDefinitionInterface but return statement is missing\\.$#"
 			count: 1
@@ -3248,31 +2363,6 @@ parameters:
 			count: 1
 			path: modules/views/src/Plugin/views/field/EntityField.php
 
-		-
-			message: "#^Access to an undefined property \\$this\\(Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\FieldPluginBase\\)&Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\MultiItemsFieldHandlerInterface\\:\\:\\$last_render\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/field/FieldPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\FieldPluginBase\\:\\:\\$last_render\\.$#"
-			count: 10
-			path: modules/views/src/Plugin/views/field/FieldPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\FieldPluginBase\\:\\:\\$last_render_text\\.$#"
-			count: 2
-			path: modules/views/src/Plugin/views/field/FieldPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\FieldPluginBase\\:\\:\\$last_tokens\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/field/FieldPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\Markup\\:\\:\\$format\\.$#"
-			count: 2
-			path: modules/views/src/Plugin/views/field/Markup.php
-
 		-
 			message: "#^Method Drupal\\\\views\\\\Plugin\\\\views\\\\field\\\\Markup\\:\\:render\\(\\) should return Drupal\\\\Component\\\\Render\\\\MarkupInterface\\|string but return statement is missing\\.$#"
 			count: 1
@@ -3283,116 +2373,16 @@ parameters:
 			count: 1
 			path: modules/views/src/Plugin/views/field/PrerenderList.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\filter\\\\BooleanOperator\\:\\:\\$valueOptions\\.$#"
-			count: 7
-			path: modules/views/src/Plugin/views/filter/BooleanOperator.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\filter\\\\BooleanOperator\\:\\:\\$value_value\\.$#"
-			count: 3
-			path: modules/views/src/Plugin/views/filter/BooleanOperator.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\filter\\\\Bundle\\:\\:\\$real_field\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/filter/Bundle.php
-
 		-
 			message: "#^Call to an undefined method Drupal\\\\views\\\\Plugin\\\\views\\\\filter\\\\FilterPluginBase\\:\\:operators\\(\\)\\.$#"
 			count: 2
 			path: modules/views/src/Plugin/views/filter/FilterPluginBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\join\\\\Subquery\\:\\:\\$left_query\\.$#"
-			count: 2
-			path: modules/views/src/Plugin/views/join/Subquery.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\query\\\\QueryPluginBase\\:\\:\\$groupOperator\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/query/QueryPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\query\\\\QueryPluginBase\\:\\:\\$offset\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/query/QueryPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\query\\\\Sql\\:\\:\\$count_field\\.$#"
-			count: 2
-			path: modules/views/src/Plugin/views/query/Sql.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\relationship\\\\EntityReverse\\:\\:\\$first_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/relationship/EntityReverse.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\relationship\\\\EntityReverse\\:\\:\\$joinManager\\.$#"
-			count: 3
-			path: modules/views/src/Plugin/views/relationship/EntityReverse.php
-
 		-
 			message: "#^Undefined variable\\: \\$def$#"
 			count: 2
 			path: modules/views/src/Plugin/views/relationship/EntityReverse.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\relationship\\\\GroupwiseMax\\:\\:\\$subquery_namespace\\.$#"
-			count: 2
-			path: modules/views/src/Plugin/views/relationship/GroupwiseMax.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\row\\\\OpmlFields\\:\\:\\$field_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/row/OpmlFields.php
-
-		-
-			message: "#^Access to an undefined property \\$this\\(Drupal\\\\views\\\\Plugin\\\\views\\\\row\\\\RowPluginBase\\)\\:\\:\\$base_field\\.$#"
-			count: 2
-			path: modules/views/src/Plugin/views/row/RowPluginBase.php
-
-		-
-			message: "#^Access to an undefined property \\$this\\(Drupal\\\\views\\\\Plugin\\\\views\\\\row\\\\RowPluginBase\\)\\:\\:\\$field_alias\\.$#"
-			count: 2
-			path: modules/views/src/Plugin/views/row/RowPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\row\\\\RowPluginBase\\:\\:\\$field_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/row/RowPluginBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\row\\\\RssFields\\:\\:\\$field_alias\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/row/RssFields.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\sort\\\\GroupByNumeric\\:\\:\\$handler\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/sort/GroupByNumeric.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\style\\\\Rss\\:\\:\\$channel_elements\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/style/Rss.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\style\\\\Rss\\:\\:\\$namespaces\\.$#"
-			count: 1
-			path: modules/views/src/Plugin/views/style/Rss.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\ViewExecutable\\:\\:\\$build_time\\.$#"
-			count: 2
-			path: modules/views/src/ViewExecutable.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views\\\\ViewExecutable\\:\\:\\$plugin_name\\.$#"
-			count: 1
-			path: modules/views/src/ViewExecutable.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
@@ -3423,11 +2413,6 @@ parameters:
 			count: 1
 			path: modules/views/tests/modules/views_config_entity_test/src/Entity/ViewsConfigEntityTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\views_test_data\\\\Plugin\\\\views\\\\field\\\\FieldFormButtonTest\\:\\:\\$last_render\\.$#"
-			count: 1
-			path: modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldFormButtonTest.php
-
 		-
 			message: "#^Method Drupal\\\\views_test_data\\\\Plugin\\\\views\\\\filter\\\\FilterTest\\:\\:buildOptionsForm\\(\\) should return array but return statement is missing\\.$#"
 			count: 1
@@ -3448,26 +2433,6 @@ parameters:
 			count: 2
 			path: modules/views/tests/src/Functional/GlossaryTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\views\\\\Functional\\\\Handler\\\\FilterDateTest\\:\\:\\$map\\.$#"
-			count: 7
-			path: modules/views/tests/src/Functional/Handler/FilterDateTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\views\\\\Functional\\\\Handler\\\\FilterDateTest\\:\\:\\$nodes\\.$#"
-			count: 16
-			path: modules/views/tests/src/Functional/Handler/FilterDateTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\views\\\\Functional\\\\Plugin\\\\DisplayTest\\:\\:\\$adminUser\\.$#"
-			count: 1
-			path: modules/views/tests/src/Functional/Plugin/DisplayTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\views\\\\Functional\\\\Plugin\\\\FilterTest\\:\\:\\$adminUser\\.$#"
-			count: 1
-			path: modules/views/tests/src/Functional/Plugin/FilterTest.php
-
 		-
 			message: "#^Method Drupal\\\\Tests\\\\views\\\\Functional\\\\Rest\\\\ViewResourceTestBase\\:\\:getNormalizedPostEntity\\(\\) should return array but return statement is missing\\.$#"
 			count: 1
@@ -3498,21 +2463,6 @@ parameters:
 			count: 2
 			path: modules/views/tests/src/FunctionalJavascript/ClickSortingAJAXTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\views\\\\Kernel\\\\Entity\\\\RowEntityRenderersTest\\:\\:\\$ids\\.$#"
-			count: 2
-			path: modules/views/tests/src/Kernel/Entity/RowEntityRenderersTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\views\\\\Kernel\\\\Entity\\\\RowEntityRenderersTest\\:\\:\\$values\\.$#"
-			count: 3
-			path: modules/views/tests/src/Kernel/Entity/RowEntityRenderersTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\views\\\\Kernel\\\\EventSubscriber\\\\ViewsEntitySchemaSubscriberIntegrationTest\\:\\:\\$database\\.$#"
-			count: 1
-			path: modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 3
@@ -3548,11 +2498,6 @@ parameters:
 			count: 1
 			path: modules/views/tests/src/Kernel/ViewsKernelTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\views\\\\Unit\\\\Plugin\\\\Derivative\\\\TestViewsLocalTask\\:\\:\\$result\\.$#"
-			count: 2
-			path: modules/views/tests/src/Unit/Plugin/Derivative/ViewsLocalTaskTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
@@ -3568,16 +2513,6 @@ parameters:
 			count: 1
 			path: modules/views_ui/src/ViewEditForm.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\views_ui\\\\ViewUI\\:\\:\\$ajax\\.$#"
-			count: 1
-			path: modules/views_ui/src/ViewUI.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\views_ui\\\\ViewUI\\:\\:\\$entityType\\.$#"
-			count: 1
-			path: modules/views_ui/src/ViewUI.php
-
 		-
 			message: "#^Method Drupal\\\\views_ui\\\\ViewUI\\:\\:getTypedData\\(\\) should return Drupal\\\\Core\\\\TypedData\\\\ComplexDataInterface but return statement is missing\\.$#"
 			count: 1
@@ -3643,46 +2578,16 @@ parameters:
 			count: 1
 			path: modules/workspaces/src/WorkspacePublisher.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\workspaces\\\\Functional\\\\WorkspaceCacheContextTest\\:\\:\\$dumpHeaders\\.$#"
-			count: 1
-			path: modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\workspaces\\\\Kernel\\\\EntityReferenceSupportedNewEntitiesConstraintValidatorTest\\:\\:\\$entityTypeManager\\.$#"
-			count: 2
-			path: modules/workspaces/tests/src/Kernel/EntityReferenceSupportedNewEntitiesConstraintValidatorTest.php
-
 		-
 			message: "#^Method Drupal\\\\Tests\\\\workspaces\\\\Kernel\\\\WorkspaceIntegrationTest\\:\\:assertIdenticalResultsetHelper\\(\\) should return bool but return statement is missing\\.$#"
 			count: 1
 			path: modules/workspaces/tests/src/Kernel/WorkspaceIntegrationTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\demo_umami_content\\\\InstallHelper\\:\\:\\$module_path\\.$#"
-			count: 5
-			path: profiles/demo_umami/modules/demo_umami_content/src/InstallHelper.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\standard\\\\Functional\\\\StandardTest\\:\\:\\$dumpHeaders\\.$#"
-			count: 1
-			path: profiles/standard/tests/src/Functional/StandardTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
 			path: rebuild.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\BuildTests\\\\Framework\\\\BuildTestBase\\:\\:\\$phpFinder\\.$#"
-			count: 1
-			path: tests/Drupal/BuildTests/Framework/BuildTestBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\FunctionalJavascriptTests\\\\Ajax\\\\FormValuesTest\\:\\:\\$assertAjaxHeader\\.$#"
-			count: 1
-			path: tests/Drupal/FunctionalJavascriptTests/Ajax/FormValuesTest.php
-
 		-
 			message: "#^Drupal\\\\Tests\\\\BrowserTestBase\\:\\:\\$defaultTheme is required\\. See https\\://www\\.drupal\\.org/node/3083055, which includes recommendations on which theme to use\\.$#"
 			count: 1
@@ -3733,16 +2638,6 @@ parameters:
 			count: 4
 			path: tests/Drupal/KernelTests/Core/Entity/ContentEntityChangedTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\KernelTests\\\\Core\\\\Entity\\\\ContentEntityNonRevisionableFieldTest\\:\\:\\$entityDefinitionUpdateManager\\.$#"
-			count: 10
-			path: tests/Drupal/KernelTests/Core/Entity/ContentEntityNonRevisionableFieldTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\KernelTests\\\\Core\\\\Entity\\\\DefaultTableMappingIntegrationTest\\:\\:\\$entityDefinitionUpdateManager\\.$#"
-			count: 10
-			path: tests/Drupal/KernelTests/Core/Entity/DefaultTableMappingIntegrationTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 9
@@ -3758,36 +2653,16 @@ parameters:
 			count: 1
 			path: tests/Drupal/KernelTests/Core/Entity/EntityDisplayFormBaseTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\KernelTests\\\\Core\\\\Entity\\\\EntitySchemaTest\\:\\:\\$entityDefinitionUpdateManager\\.$#"
-			count: 10
-			path: tests/Drupal/KernelTests/Core/Entity/EntitySchemaTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
 			path: tests/Drupal/KernelTests/Core/Entity/EntityTypeConstraintsTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\KernelTests\\\\Core\\\\Entity\\\\EntityValidationTest\\:\\:\\$cachedDiscoveries\\.$#"
-			count: 1
-			path: tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\KernelTests\\\\Core\\\\Image\\\\ToolkitTest\\:\\:\\$imageEffectPluginManager\\.$#"
-			count: 1
-			path: tests/Drupal/KernelTests/Core/Image/ToolkitTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 1
 			path: tests/Drupal/KernelTests/Core/KeyValueStore/GarbageCollectionTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\KernelTests\\\\Core\\\\Queue\\\\QueueSerializationTest\\:\\:\\$queue\\.$#"
-			count: 1
-			path: tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php
-
 		-
 			message: "#^\\#pre_render callback 'element_info_test…' at key '1' is not trusted\\.$#"
 			count: 1
@@ -3808,31 +2683,11 @@ parameters:
 			count: 1
 			path: tests/Drupal/KernelTests/Core/Test/BrowserTestBaseTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Core\\\\File\\\\FileUrlGeneratorInterface\\:\\:\\$fileUrlGenerator\\.$#"
-			count: 2
-			path: tests/Drupal/KernelTests/Core/Theme/ImageTest.php
-
-		-
-			message: "#^Call to an undefined method Drupal\\\\Core\\\\File\\\\FileUrlGeneratorInterface\\:\\:assertRaw\\(\\)\\.$#"
-			count: 1
-			path: tests/Drupal/KernelTests/Core/Theme/ImageTest.php
-
 		-
 			message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
 			count: 5
 			path: tests/Drupal/KernelTests/Core/TypedData/TypedDataTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\KernelTests\\\\KernelTestBase\\:\\:\\$streamWrappers\\.$#"
-			count: 1
-			path: tests/Drupal/KernelTests/KernelTestBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\KernelTests\\\\KernelTestBase\\:\\:\\$url\\.$#"
-			count: 1
-			path: tests/Drupal/KernelTests/KernelTestBase.php
-
 		-
 			message: "#^Method Drupal\\\\KernelTests\\\\KernelTestBase\\:\\:assertEscaped\\(\\) should return bool but return statement is missing\\.$#"
 			count: 1
@@ -3873,36 +2728,6 @@ parameters:
 			count: 1
 			path: tests/Drupal/KernelTests/KernelTestBaseTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\KernelTests\\\\RouteProvider\\:\\:\\$service\\.$#"
-			count: 1
-			path: tests/Drupal/KernelTests/RouteProvider.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:\\$baseUrl\\.$#"
-			count: 1
-			path: tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:\\$configImporter\\.$#"
-			count: 1
-			path: tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:\\$defaultTheme\\.$#"
-			count: 2
-			path: tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:\\$originalShutdownCallbacks\\.$#"
-			count: 1
-			path: tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:\\$translationFilesDirectory\\.$#"
-			count: 1
-			path: tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
-
 		-
 			message: "#^Call to an undefined method Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:assertTrue\\(\\)\\.$#"
 			count: 1
@@ -3953,11 +2778,6 @@ parameters:
 			count: 1
 			path: tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\Component\\\\PhpStorage\\\\MTimeProtectedFileStorageBase\\:\\:\\$expected\\.$#"
-			count: 3
-			path: tests/Drupal/Tests/Component/PhpStorage/MTimeProtectedFileStorageBase.php
-
 		-
 			message: "#^Cannot unset offset int on array\\<string, mixed\\>\\.$#"
 			count: 1
@@ -3968,11 +2788,6 @@ parameters:
 			count: 1
 			path: tests/Drupal/Tests/Composer/ComposerTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\Composer\\\\Plugin\\\\Scaffold\\\\Functional\\\\ScaffoldUpgradeTest\\:\\:\\$fixturesDir\\.$#"
-			count: 2
-			path: tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldUpgradeTest.php
-
 		-
 			message: "#^Class Drupal\\\\Driver\\\\Database\\\\corefake\\\\Install\\\\Tasks not found\\.$#"
 			count: 1
@@ -4068,11 +2883,6 @@ parameters:
 			count: 1
 			path: tests/Drupal/Tests/Core/Plugin/LazyPluginCollectionTestBase.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\Core\\\\Render\\\\RendererBubblingTest\\:\\:\\$cacheContextsManager\\.$#"
-			count: 3
-			path: tests/Drupal/Tests/Core/Render/RendererBubblingTest.php
-
 		-
 			message: "#^\\#access_callback callback class '\\$this\\(Drupal\\\\Tests\\\\Core\\\\Render\\\\RendererCallbackTest\\)' at key '0' does not implement Drupal\\\\Core\\\\Security\\\\TrustedCallbackInterface\\.$#"
 			count: 1
@@ -4093,11 +2903,6 @@ parameters:
 			count: 1
 			path: tests/Drupal/Tests/Core/Render/RendererCallbackTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\Core\\\\Render\\\\RendererPlaceholdersTest\\:\\:\\$cacheContextsManager\\.$#"
-			count: 1
-			path: tests/Drupal/Tests/Core/Render/RendererPlaceholdersTest.php
-
 		-
 			message: "#^Cannot unset offset '\\#cache' on array\\{\\#lazy_builder\\: array\\{'Drupal\\\\\\\\Tests\\\\\\\\Core…', array\\{mixed\\}\\}\\}\\.$#"
 			count: 1
@@ -4113,36 +2918,6 @@ parameters:
 			count: 1
 			path: tests/Drupal/Tests/Core/Render/RendererTest.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\Core\\\\Render\\\\RendererTestBase\\:\\:\\$cacheContextsManager\\.$#"
-			count: 1
-			path: tests/Drupal/Tests/Core/Render/RendererTestBase.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\Core\\\\Render\\\\TestCacheableDependency\\:\\:\\$contexts\\.$#"
-			count: 2
-			path: tests/Drupal/Tests/Core/Render/TestCacheableDependency.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\Core\\\\Render\\\\TestCacheableDependency\\:\\:\\$maxAge\\.$#"
-			count: 2
-			path: tests/Drupal/Tests/Core/Render/TestCacheableDependency.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\Core\\\\Render\\\\TestCacheableDependency\\:\\:\\$tags\\.$#"
-			count: 2
-			path: tests/Drupal/Tests/Core/Render/TestCacheableDependency.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\Core\\\\Routing\\\\AccessAwareRouterTest\\:\\:\\$router\\.$#"
-			count: 2
-			path: tests/Drupal/Tests/Core/Routing/AccessAwareRouterTest.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Tests\\\\Core\\\\Test\\\\TestClass\\:\\:\\$url\\.$#"
-			count: 1
-			path: tests/Drupal/Tests/Core/Test/AssertContentTraitTest.php
-
 		-
 			message: "#^Call to an undefined method Drupal\\\\Tests\\\\Core\\\\Test\\\\TestClass\\:\\:assertArrayHasKey\\(\\)\\.$#"
 			count: 3
diff --git a/core/profiles/demo_umami/modules/demo_umami_content/src/InstallHelper.php b/core/profiles/demo_umami/modules/demo_umami_content/src/InstallHelper.php
index f1d17a6cb4..ffb83d1243 100644
--- a/core/profiles/demo_umami/modules/demo_umami_content/src/InstallHelper.php
+++ b/core/profiles/demo_umami/modules/demo_umami_content/src/InstallHelper.php
@@ -88,6 +88,11 @@ class InstallHelper implements ContainerInjectionInterface {
    */
   protected $nodeIdMap;
 
+  /**
+   * @var string
+   */
+  protected $module_path;
+
   /**
    * Constructs a new InstallHelper object.
    *
diff --git a/core/profiles/standard/tests/src/Functional/StandardTest.php b/core/profiles/standard/tests/src/Functional/StandardTest.php
index 4a8f92ac33..a6ced5aa68 100644
--- a/core/profiles/standard/tests/src/Functional/StandardTest.php
+++ b/core/profiles/standard/tests/src/Functional/StandardTest.php
@@ -172,7 +172,6 @@ public function testStandard() {
 
     // Verify certain routes' responses are cacheable by Dynamic Page Cache, to
     // ensure these responses are very fast for authenticated users.
-    $this->dumpHeaders = TRUE;
     $this->drupalLogin($this->adminUser);
     $url = Url::fromRoute('contact.site_page');
     $this->drupalGet($url);
diff --git a/core/tests/Drupal/BuildTests/Framework/BuildTestBase.php b/core/tests/Drupal/BuildTests/Framework/BuildTestBase.php
index c5ca916621..39761c8c45 100644
--- a/core/tests/Drupal/BuildTests/Framework/BuildTestBase.php
+++ b/core/tests/Drupal/BuildTests/Framework/BuildTestBase.php
@@ -142,6 +142,13 @@ abstract class BuildTestBase extends TestCase {
    */
   private $commandProcess;
 
+  /**
+   * The PHP executable finder.
+   *
+   * @var \Symfony\Component\Process\PhpExecutableFinder
+   */
+  private PhpExecutableFinder $phpFinder;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/FormValuesTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/FormValuesTest.php
index 7fbbe05403..1926189d1c 100644
--- a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/FormValuesTest.php
+++ b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/FormValuesTest.php
@@ -64,7 +64,6 @@ public function testSimpleAjaxFormValue() {
     $this->assertFileDoesNotExist(DRUPAL_ROOT . '/' . $this->siteDirectory . '/error.log');
     // We don't need to check for the X-Drupal-Ajax-Token header with these
     // invalid requests.
-    $this->assertAjaxHeader = FALSE;
     foreach (['null', 'empty', 'nonexistent'] as $key) {
       $element_name = 'select_' . $key . '_callback';
       // Updating the field will trigger an AJAX request/response.
diff --git a/core/tests/Drupal/KernelTests/AssertContentTrait.php b/core/tests/Drupal/KernelTests/AssertContentTrait.php
index f8a99a0ce4..73f427da59 100644
--- a/core/tests/Drupal/KernelTests/AssertContentTrait.php
+++ b/core/tests/Drupal/KernelTests/AssertContentTrait.php
@@ -143,7 +143,7 @@ protected function parse() {
    *   The current URL.
    */
   protected function getUrl() {
-    return $this->url ?? 'no-url';
+    return 'no-url';
   }
 
   /**
diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNonRevisionableFieldTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNonRevisionableFieldTest.php
index be73cf8ecd..066c145172 100644
--- a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNonRevisionableFieldTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNonRevisionableFieldTest.php
@@ -37,6 +37,20 @@ class ContentEntityNonRevisionableFieldTest extends EntityKernelTestBase {
    */
   protected $rev;
 
+  /**
+   * The entity field manager.
+   *
+   * @var \Drupal\Core\Entity\EntityFieldManagerInterface
+   */
+  protected $entityFieldManager;
+
+  /**
+   * The entity definition update manager.
+   *
+   * @var \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface
+   */
+  protected $entityDefinitionUpdateManager;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/KernelTests/Core/Entity/DefaultTableMappingIntegrationTest.php b/core/tests/Drupal/KernelTests/Core/Entity/DefaultTableMappingIntegrationTest.php
index 0e5815ab7a..b21182c223 100644
--- a/core/tests/Drupal/KernelTests/Core/Entity/DefaultTableMappingIntegrationTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Entity/DefaultTableMappingIntegrationTest.php
@@ -31,6 +31,20 @@ class DefaultTableMappingIntegrationTest extends EntityKernelTestBase {
    */
   protected static $modules = ['entity_test_extra'];
 
+  /**
+   * The entity field manager.
+   *
+   * @var \Drupal\Core\Entity\EntityFieldManagerInterface
+   */
+  protected $entityFieldManager;
+
+  /**
+   * The entity definition update manager.
+   *
+   * @var \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface
+   */
+  protected $entityDefinitionUpdateManager;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntitySchemaTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntitySchemaTest.php
index f4c5844e03..b7f44ca366 100644
--- a/core/tests/Drupal/KernelTests/Core/Entity/EntitySchemaTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Entity/EntitySchemaTest.php
@@ -30,6 +30,20 @@ class EntitySchemaTest extends EntityKernelTestBase {
    */
   protected $database;
 
+  /**
+   * The entity field manager.
+   *
+   * @var \Drupal\Core\Entity\EntityFieldManagerInterface
+   */
+  protected $entityFieldManager;
+
+  /**
+   * The entity definition update manager.
+   *
+   * @var \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface
+   */
+  protected $entityDefinitionUpdateManager;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php
index c4426c3c7c..0b8f843565 100644
--- a/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php
@@ -34,6 +34,11 @@ class EntityValidationTest extends EntityKernelTestBase {
    */
   protected $entityFieldText;
 
+  /**
+   * @var array
+   */
+  protected $cachedDiscoveries;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/KernelTests/Core/Image/ToolkitTest.php b/core/tests/Drupal/KernelTests/Core/Image/ToolkitTest.php
index 1f4315db05..03c85052c7 100644
--- a/core/tests/Drupal/KernelTests/Core/Image/ToolkitTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Image/ToolkitTest.php
@@ -4,6 +4,7 @@
 
 use Drupal\Core\Image\ImageInterface;
 use Drupal\Core\ImageToolkit\ImageToolkitInterface;
+use Drupal\image\ImageEffectManager;
 use Drupal\KernelTests\KernelTestBase;
 use Drupal\Tests\Traits\Core\Image\ToolkitTestTrait;
 
@@ -31,6 +32,13 @@ class ToolkitTest extends KernelTestBase {
    */
   protected $image;
 
+  /**
+   * The image effect plugin manager service.
+   *
+   * @var \Drupal\image\ImageEffectManager
+   */
+  protected ImageEffectManager $imageEffectPluginManager;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php b/core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php
index c3f4f814b3..39697f977c 100644
--- a/core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php
@@ -6,6 +6,7 @@
 use Drupal\Core\Form\FormInterface;
 use Drupal\Core\Form\FormState;
 use Drupal\Core\Form\FormStateInterface;
+use Drupal\Core\Queue\DatabaseQueue;
 use Drupal\KernelTests\KernelTestBase;
 use Drupal\user\Entity\User;
 
@@ -25,6 +26,11 @@ class QueueSerializationTest extends KernelTestBase implements FormInterface {
    */
   protected static $modules = ['system', 'user'];
 
+  /**
+   * @var \Drupal\Core\Queue\DatabaseQueue
+   */
+  protected DatabaseQueue $queue;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php b/core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php
index ecbf860228..c315722c13 100644
--- a/core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php
@@ -88,8 +88,6 @@ public function testThemeImageWithSrc() {
     $this->render($image);
 
     // Make sure the src attribute has the correct value.
-    /** @var \Drupal\Core\File\FileUrlGeneratorInterface $this->fileUrlGenerator */
-    $this->fileUrlGenerator = $this->fileUrlGenerator;
     $this->assertRaw($this->fileUrlGenerator->generateString($image['#uri']), 'Correct output for an image with the src attribute.');
   }
 
diff --git a/core/tests/Drupal/KernelTests/KernelTestBase.php b/core/tests/Drupal/KernelTests/KernelTestBase.php
index 9dbcc1db76..11c8ada535 100644
--- a/core/tests/Drupal/KernelTests/KernelTestBase.php
+++ b/core/tests/Drupal/KernelTests/KernelTestBase.php
@@ -261,7 +261,6 @@ protected function setUp(): void {
    * @internal
    */
   protected function bootEnvironment() {
-    $this->streamWrappers = [];
     \Drupal::unsetContainer();
 
     $this->classLoader = require $this->root . '/autoload.php';
diff --git a/core/tests/Drupal/KernelTests/RouteProvider.php b/core/tests/Drupal/KernelTests/RouteProvider.php
index f075dbae0d..ae598433a0 100644
--- a/core/tests/Drupal/KernelTests/RouteProvider.php
+++ b/core/tests/Drupal/KernelTests/RouteProvider.php
@@ -12,6 +12,11 @@ class RouteProvider implements PreloadableRouteProviderInterface {
 
   use \Drupal\Core\DependencyInjection\DependencySerializationTrait;
 
+  /**
+   * @var \Drupal\Core\Routing\RouteProvider
+   */
+  protected $service;
+
   /**
    * Loads the real route provider from the container and rebuilds the router.
    *
diff --git a/core/tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php b/core/tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
index e9d4349483..3d63cff6ce 100644
--- a/core/tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
+++ b/core/tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
@@ -30,6 +30,45 @@ class TestSiteInstallCommand extends Command {
     changeDatabasePrefix as protected changeDatabasePrefixTrait;
   }
 
+  /**
+   * The theme to install as the default for testing.
+   *
+   * Defaults to the install profile's default theme, if it specifies any.
+   *
+   * @var string
+   */
+  protected $defaultTheme;
+
+  /**
+   * The base URL.
+   *
+   * @var string
+   */
+  protected $baseUrl;
+
+  /**
+   * The original array of shutdown function callbacks.
+   *
+   * @var array
+   */
+  protected $originalShutdownCallbacks = [];
+
+  /**
+   * The translation file directory for the test environment.
+   *
+   * This is set in BrowserTestBase::prepareEnvironment().
+   *
+   * @var string
+   */
+  protected $translationFilesDirectory;
+
+  /**
+   * The config importer that can be used in a test.
+   *
+   * @var \Drupal\Core\Config\ConfigImporter
+   */
+  protected $configImporter;
+
   /**
    * The install profile to use.
    *
diff --git a/core/tests/Drupal/Tests/Component/PhpStorage/MTimeProtectedFileStorageBase.php b/core/tests/Drupal/Tests/Component/PhpStorage/MTimeProtectedFileStorageBase.php
index 166ad9b57f..c66b436a54 100644
--- a/core/tests/Drupal/Tests/Component/PhpStorage/MTimeProtectedFileStorageBase.php
+++ b/core/tests/Drupal/Tests/Component/PhpStorage/MTimeProtectedFileStorageBase.php
@@ -34,6 +34,11 @@ abstract class MTimeProtectedFileStorageBase extends PhpStorageTestBase {
    */
   protected $settings;
 
+  /**
+   * @var array
+   */
+  protected $expected;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldUpgradeTest.php b/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldUpgradeTest.php
index 29f50fa13b..e5d781799e 100644
--- a/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldUpgradeTest.php
+++ b/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldUpgradeTest.php
@@ -33,6 +33,13 @@ class ScaffoldUpgradeTest extends TestCase {
    */
   protected $fixtures;
 
+  /**
+   * The Fixtures directory.
+   *
+   * @var string
+   */
+  protected string $fixturesDir;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/Tests/Core/Render/RendererTestBase.php b/core/tests/Drupal/Tests/Core/Render/RendererTestBase.php
index 3acf974864..cb3cc7892a 100644
--- a/core/tests/Drupal/Tests/Core/Render/RendererTestBase.php
+++ b/core/tests/Drupal/Tests/Core/Render/RendererTestBase.php
@@ -59,7 +59,7 @@ abstract class RendererTestBase extends UnitTestCase {
   /**
    * @var \Drupal\Core\Cache\Context\CacheContextsManager|\PHPUnit\Framework\MockObject\MockObject
    */
-  protected $cacheContexts;
+  protected $cacheContextsManager;
 
   /**
    * The mocked controller resolver.
diff --git a/core/tests/Drupal/Tests/Core/Render/TestCacheableDependency.php b/core/tests/Drupal/Tests/Core/Render/TestCacheableDependency.php
index 8980e89340..298a2bf04c 100644
--- a/core/tests/Drupal/Tests/Core/Render/TestCacheableDependency.php
+++ b/core/tests/Drupal/Tests/Core/Render/TestCacheableDependency.php
@@ -9,6 +9,10 @@
  */
 class TestCacheableDependency implements CacheableDependencyInterface {
 
+  protected array $contexts;
+  protected array $tags;
+  protected $maxAge;
+
   public function __construct(array $contexts, array $tags, $max_age) {
     $this->contexts = $contexts;
     $this->tags = $tags;
diff --git a/core/tests/Drupal/Tests/Core/Routing/AccessAwareRouterTest.php b/core/tests/Drupal/Tests/Core/Routing/AccessAwareRouterTest.php
index 40a24620f0..ed2e557940 100644
--- a/core/tests/Drupal/Tests/Core/Routing/AccessAwareRouterTest.php
+++ b/core/tests/Drupal/Tests/Core/Routing/AccessAwareRouterTest.php
@@ -5,6 +5,7 @@
 use Drupal\Core\Access\AccessResult;
 use Drupal\Core\Routing\AccessAwareRouter;
 use Drupal\Core\Routing\AccessAwareRouterInterface;
+use Drupal\Core\Routing\Router;
 use Drupal\Tests\UnitTestCase;
 use Drupal\Core\Routing\RouteObjectInterface;
 use Symfony\Component\HttpFoundation\Request;
@@ -17,6 +18,11 @@
  */
 class AccessAwareRouterTest extends UnitTestCase {
 
+  /**
+   * @var \Drupal\Core\Routing\Router
+   */
+  protected Router $router;
+
   /**
    * @var \Symfony\Component\Routing\Route
    */
