diff --git a/core/lib/Drupal/Core/Database/Query/Select.php b/core/lib/Drupal/Core/Database/Query/Select.php
index ac7bdd4e6f932717865ba41c1012aaa6e6694bac..129151a735a388f5b7ea10271c3dd4f577c2e693 100644
--- a/core/lib/Drupal/Core/Database/Query/Select.php
+++ b/core/lib/Drupal/Core/Database/Query/Select.php
@@ -118,6 +118,16 @@ class Select extends Query implements SelectInterface {
    */
   protected $forUpdate = FALSE;
 
+  /**
+   * The query metadata for alter purposes.
+   */
+  public array $alterMetaData;
+
+  /**
+   * The query tags.
+   */
+  public array $alterTags;
+
   /**
    * Constructs a Select object.
    *
diff --git a/core/lib/Drupal/Core/Extension/Extension.php b/core/lib/Drupal/Core/Extension/Extension.php
index 62977ba7ce5c786ad8045768c956c87164fcc4e9..be92a25fc17cc2dd9f731ca51143b88838024f18 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;
 
+  /**
+   * The extension info array.
+   */
+  public array $info;
+
   /**
    * Constructs a new Extension object.
    *
diff --git a/core/lib/Drupal/Core/Field/Entity/BaseFieldOverride.php b/core/lib/Drupal/Core/Field/Entity/BaseFieldOverride.php
index 40493f7402871d2ab6c175957e052eac901b4504..54c08284f4e1ec92e5f0c287a400205dd606d60b 100644
--- a/core/lib/Drupal/Core/Field/Entity/BaseFieldOverride.php
+++ b/core/lib/Drupal/Core/Field/Entity/BaseFieldOverride.php
@@ -49,6 +49,11 @@ class BaseFieldOverride extends FieldConfigBase {
    */
   protected $baseFieldDefinition;
 
+  /**
+   * The original override.
+   */
+  public BaseFieldOverride $original;
+
   /**
    * Creates a base field override object.
    *
diff --git a/core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php b/core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php
index b8200c1c7f7a3247b37084b37e324dc8d68d2de8..f5e1835af512bf63889dd8f964e99de249c7908d 100644
--- a/core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php
+++ b/core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php
@@ -15,6 +15,11 @@
  */
 class StatisticsLastCommentName extends FieldPluginBase {
 
+  /**
+   * The user id.
+   */
+  public string $uid;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/comment/src/Plugin/views/row/Rss.php b/core/modules/comment/src/Plugin/views/row/Rss.php
index 728afd6f8d5053d02826b80e577e5b053ed0482e..5be3a680a4f3e30fd08137df72bc60f37775ee81 100644
--- a/core/modules/comment/src/Plugin/views/row/Rss.php
+++ b/core/modules/comment/src/Plugin/views/row/Rss.php
@@ -27,7 +27,12 @@ class Rss extends RssPluginBase {
   /**
    * {@inheritdoc}
    */
-  protected $base_field = 'cid';
+  public string $base_field = 'cid';
+
+  /**
+   * The field alias.
+   */
+  public string $field_alias;
 
   /**
    * @var \Drupal\comment\CommentInterface[]
diff --git a/core/modules/field/src/Entity/FieldConfig.php b/core/modules/field/src/Entity/FieldConfig.php
index 8109d138daf6b6ad7216765d497664f6ecb3a9d0..8067f5be5df062d33f243b893bfe4a96c49b5078 100644
--- a/core/modules/field/src/Entity/FieldConfig.php
+++ b/core/modules/field/src/Entity/FieldConfig.php
@@ -71,6 +71,11 @@ class FieldConfig extends FieldConfigBase implements FieldConfigInterface {
    */
   protected $fieldStorage;
 
+  /**
+   * The original FieldConfig entity.
+   */
+  public FieldConfig $original;
+
   /**
    * Constructs a FieldConfig object.
    *
diff --git a/core/modules/field/src/Entity/FieldStorageConfig.php b/core/modules/field/src/Entity/FieldStorageConfig.php
index c05caf084c2bb7d4a179102cdc49f49a7d5d9eb0..0aa8dca37860c13cbe2522e7fd17feff2edc5de3 100644
--- a/core/modules/field/src/Entity/FieldStorageConfig.php
+++ b/core/modules/field/src/Entity/FieldStorageConfig.php
@@ -229,6 +229,11 @@ class FieldStorageConfig extends ConfigEntityBase implements FieldStorageConfigI
    */
   protected static $inDeletion = FALSE;
 
+  /**
+   * Copy of the field before changes.
+   */
+  public FieldStorageConfigInterface $original;
+
   /**
    * Constructs a FieldStorageConfig object.
    *
diff --git a/core/modules/node/src/Plugin/views/row/Rss.php b/core/modules/node/src/Plugin/views/row/Rss.php
index ca2b87ce3f7129607398a4ddcc5126c80d231296..b5d970b10e141a85b02af7e1a1e6f939ea2993ec 100644
--- a/core/modules/node/src/Plugin/views/row/Rss.php
+++ b/core/modules/node/src/Plugin/views/row/Rss.php
@@ -29,10 +29,8 @@ class Rss extends RssPluginBase {
 
   /**
    * The base field for this row plugin.
-   *
-   * @var string
    */
-  public $base_field = 'nid';
+  public string $base_field = 'nid';
 
   /**
    * Stores the nodes loaded with preRender.
diff --git a/core/modules/search/src/Plugin/views/argument/Search.php b/core/modules/search/src/Plugin/views/argument/Search.php
index ab61880e144b41da589aecbea623be45f1132760..73f16927abf2dc3ca54a41999a8f6ab050b3b6f5 100644
--- a/core/modules/search/src/Plugin/views/argument/Search.php
+++ b/core/modules/search/src/Plugin/views/argument/Search.php
@@ -31,6 +31,11 @@ class Search extends ArgumentPluginBase {
    */
   protected $searchType;
 
+  /**
+   * The search score.
+   */
+  public 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 c0b0d4516b3e9a4e852100c79ec21fba403aee26..284afcbd40e983efa06e5b934eb49a710c930e97 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;
 
+  /**
+   * The search score.
+   */
+  public string $search_score;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/ManyToOneHelper.php b/core/modules/views/src/ManyToOneHelper.php
index 6d47212a895dda340b50c6f9aa7dcdd760a14c73..06ee0d2bc17fc9780647bafa9898f4e33f7bce49 100644
--- a/core/modules/views/src/ManyToOneHelper.php
+++ b/core/modules/views/src/ManyToOneHelper.php
@@ -4,6 +4,7 @@
 
 use Drupal\Core\Form\FormStateInterface;
 use Drupal\views\Plugin\views\HandlerBase;
+use Drupal\views\Plugin\views\ViewsHandlerInterface;
 
 /**
  * This many to one helper object is used on both arguments and filters.
@@ -20,6 +21,11 @@
  */
 class ManyToOneHelper {
 
+  /**
+   * The handler.
+   */
+  public ViewsHandlerInterface $handler;
+
   public function __construct($handler) {
     $this->handler = $handler;
   }
@@ -140,7 +146,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 582e77f57dea05162da753c509e37a5910cb386c..d13570d256353992aad38ac4cf3032c1c6200d8e 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;
 
+  /**
+   * Tracks whether the plugin is a handler.
+   */
+  public bool $is_handler;
+
   /**
    * Constructs a Handler object.
    *
diff --git a/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
index 3da81eb1a2eec71bd6dea771091a551f66d872de..a3838e5fd7188c8686c17126dd6b93227a064b66 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;
 
+  /**
+   * The name table alias.
+   */
+  public string $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,41 @@ abstract class ArgumentPluginBase extends HandlerBase implements CacheableDepend
    */
   public $name_field;
 
+  /**
+   * The alias for the field.
+   */
+  public string $name_alias;
+
+  /**
+   * The base table alias.
+   */
+  public string $base_alias;
+
+  /**
+   * The alias count.
+   */
+  public string $count_alias;
+
+  /**
+   * Is argument validated.
+   */
+  public ?bool $argument_validated;
+
+  /**
+   * Is argument a default.
+   */
+  public bool $is_default;
+
+  /**
+   * The operator used for the query: or|and.
+   */
+  public string $operator;
+
+  /**
+   * The argument position.
+   */
+  public int $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 680c19f2aa2467baaf7af07c9e335153cec4c272..2273973f5f8d4cc7af91ed50764cf12349cd5af8 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 {
 
+  /**
+   * The many-to-one helper.
+   */
+  public ManyToOneHelper $helper;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/argument/NumericArgument.php b/core/modules/views/src/Plugin/views/argument/NumericArgument.php
index f6da02f66c1b06b8d477057baa1c73a9e135b0ce..ab1ad7fa8e084292d99e42f6738f6d3642a2caba 100644
--- a/core/modules/views/src/Plugin/views/argument/NumericArgument.php
+++ b/core/modules/views/src/Plugin/views/argument/NumericArgument.php
@@ -15,12 +15,6 @@
  */
 class NumericArgument extends ArgumentPluginBase {
 
-  /**
-   * The operator used for the query: or|and.
-   * @var string
-   */
-  public $operator;
-
   /**
    * The actual value which is used for querying.
    * @var array
diff --git a/core/modules/views/src/Plugin/views/argument/StringArgument.php b/core/modules/views/src/Plugin/views/argument/StringArgument.php
index ef85b80e63865c592fdee515a4f2fcfd926dcf11..2962bf9f116d1a923c0019cc8e123f3bc2f79b83 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 {
 
+  /**
+   * The many-to-one helper.
+   */
+  public ManyToOneHelper $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 4f91e6a160afbf654368952dc58024e84301bb48..3eb340aff60b0b85005d32acb2c164fd2e6c05b2 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;
 
+  /**
+   * The option name.
+   */
+  public string $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 c89479f9dc699d7b5f99998ca95ae395adf1420e..f4b7f8f3d50d9ed701911a695144bcc3d66efb07 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;
 
+  /**
+   * The option name.
+   */
+  public string $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 338c5fe72d75cc49f75d037f445ad4c8a992821a..9c5dff78ab653c1669abe1c04edb5b72ce496dce 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;
 
+  /**
+   * Keeps track whether the display uses exposed filters.
+   */
+  public bool $has_exposed;
+
+  /**
+   * The default display.
+   */
+  public DisplayPluginInterface $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 47c372bc37d0657be2944c184a9da319ecd26463..b592ee06ad357bcda278e87f6d4fcd148641bb90 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;
 
+  /**
+   * The id field alias.
+   */
+  public string $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 ec542fc52d3d22d0e8da719ca666ec5f0442714b..8ea2ab2bc491b85fd573630e5e8e38301c334329 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 {
 
+  /**
+   * The allowed formats.
+   */
+  public array $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 d697d52031915160c967b53e4142e24c0a8ec034..105f0a1ccc1b8ab76d3ede88c32e3781277c895d 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;
 
+  /**
+   * The fields that we are actually grouping on.
+   */
+  public array $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 98351f05ce33beb42baa3cd60292ae999123df21..b777f41c04c0cfa5a57b93a11b511156f7f68b06 100644
--- a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php
+++ b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php
@@ -106,6 +106,21 @@ abstract class FieldPluginBase extends HandlerBase implements FieldHandlerInterf
    */
   protected $renderer;
 
+  /**
+   * The last rendered value.
+   */
+  public string|MarkupInterface|NULL $last_render;
+
+  /**
+   * The last rendered text.
+   */
+  public string|MarkupInterface|NULL $last_render_text;
+
+  /**
+   * The last rendered tokens.
+   */
+  public array $last_tokens;
+
   /**
    * Keeps track of the last render index.
    *
diff --git a/core/modules/views/src/Plugin/views/field/Markup.php b/core/modules/views/src/Plugin/views/field/Markup.php
index 883bd56fb08bc358ad50c404c44d653857471fac..5ddd5a514fcb9ca4395eec568f90ae0834198375 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 {
 
+  /**
+   * The format to use for this field.
+   */
+  public string $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 4fae02498a0bb0918fb66f8190e513f39854fac0..81c2f47aa81a001c2bfa18d53a8f14e16171f531 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;
 
+  /**
+   * The value title.
+   */
+  public string $value_value;
+
+  /**
+   * The value options.
+   */
+  public ?array $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 703173d79fdb5418837c911573626bae2a6e28aa..6ec83835675bc6f5c7eb54a0035e09f10aedd9e6 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;
 
+  /**
+   * The bundle key.
+   */
+  public string $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 8ef5342d108d9b9ae012dd500733a51774460e77..ec9eefd9cf9c346ece68790f89fc4487e2d476ce 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 {
 
+  /**
+   * The left join query.
+   */
+  public string $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 27277a5e3e92a676455e0da2307e01dffd355692..75d5d66b642f9dff1f7eef884d4a587487821a6a 100644
--- a/core/modules/views/src/Plugin/views/query/QueryPluginBase.php
+++ b/core/modules/views/src/Plugin/views/query/QueryPluginBase.php
@@ -47,6 +47,11 @@ abstract class QueryPluginBase extends PluginBase implements CacheableDependency
    */
   protected $limit;
 
+  /**
+   * The OFFSET on the query.
+   */
+  public int $offset;
+
   /**
    * 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 40de924609ac18956590ae391447d6d433ebcef2..4cd99a8671f0f6164c46c2eb91f482d2b3805e4c 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;
 
+  /**
+   * The count field definition.
+   */
+  public array $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 7f6d26b81b5a1027724220552dbe6488d18229cb..9ebba38603e2e71698f1ffca4e505e0372643b23 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 {
 
+  /**
+   * The views plugin join manager.
+   */
+  public ViewsHandlerManager $joinManager;
+
+  /**
+   * The alias for the left table.
+   */
+  public string $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 3632b95cb3e067e90a3ca09fc41ed31319a8cc21..ab202b06bbd33c83b620995aaa9308c538931e71 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 {
 
+  /**
+   * The namespace of the subquery.
+   */
+  public string $subquery_namespace;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/row/EntityRow.php b/core/modules/views/src/Plugin/views/row/EntityRow.php
index 2bffbcfa825513b82a93fd0381c2976d24d3c4b4..f67dedcbb0a02e6176ec6f303e4a7360f1f4dfa0 100644
--- a/core/modules/views/src/Plugin/views/row/EntityRow.php
+++ b/core/modules/views/src/Plugin/views/row/EntityRow.php
@@ -30,13 +30,6 @@ class EntityRow extends RowPluginBase {
    */
   public $base_table;
 
-  /**
-   * The actual field which is used for the entity id.
-   *
-   * @var string
-   */
-  public $base_field;
-
   /**
    * Stores the entity type ID of the result entities.
    *
diff --git a/core/modules/views/src/Plugin/views/row/RowPluginBase.php b/core/modules/views/src/Plugin/views/row/RowPluginBase.php
index 0a3e091aca1785ed43b85465ea9ce0b80416e028..06772d356b03b2f78682d0c3f82dcbb18494a652 100644
--- a/core/modules/views/src/Plugin/views/row/RowPluginBase.php
+++ b/core/modules/views/src/Plugin/views/row/RowPluginBase.php
@@ -49,6 +49,16 @@ abstract class RowPluginBase extends PluginBase {
    */
   protected $usesFields = FALSE;
 
+  /**
+   * The actual field used.
+   */
+  public string $base_field;
+
+  /**
+   * The field alias.
+   */
+  public string $field_alias;
+
   /**
    * Returns the usesFields property.
    *
diff --git a/core/modules/views/src/Plugin/views/style/Rss.php b/core/modules/views/src/Plugin/views/style/Rss.php
index 6693c4863e706742b8430e41a69b2cfc980e032c..8095e36f86344cd1b11e452ac273a354d9d0e454 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 {
 
+  /**
+   * The RSS namespaces.
+   */
+  public array $namespaces;
+
+  /**
+   * The channel elements.
+   */
+  public array $channel_elements;
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/ViewExecutable.php b/core/modules/views/src/ViewExecutable.php
index 5a7c6307b455737b71403e1dc2e48a60456c4c7d..77165e691ca6423b849c69ffe5cf6ce61d64a3f7 100644
--- a/core/modules/views/src/ViewExecutable.php
+++ b/core/modules/views/src/ViewExecutable.php
@@ -72,6 +72,16 @@ class ViewExecutable {
    */
   protected $ajaxEnabled = FALSE;
 
+  /**
+   * The plugin name.
+   */
+  public ?string $plugin_name;
+
+  /**
+   * The build execution time.
+   */
+  public string|float $build_time;
+
   /**
    * Where the results of a query will go.
    *
diff --git a/core/phpstan-baseline.neon b/core/phpstan-baseline.neon
index b374ad04031a281c551b0e5431d51e2b69bf3ed5..797a382f0e4c4876b06d2e63d23cc8290a94b3e6 100644
--- a/core/phpstan-baseline.neon
+++ b/core/phpstan-baseline.neon
@@ -195,16 +195,6 @@ parameters:
 			count: 1
 			path: lib/Drupal/Core/Database/Query/Merge.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Core\\\\Database\\\\Query\\\\Select\\:\\:\\$alterMetaData\\.$#"
-			count: 1
-			path: lib/Drupal/Core/Database/Query/Select.php
-
-		-
-			message: "#^Access to an undefined property Drupal\\\\Core\\\\Database\\\\Query\\\\Select\\:\\:\\$alterTags\\.$#"
-			count: 3
-			path: lib/Drupal/Core/Database/Query/Select.php
-
 		-
 			message: "#^Access to an undefined property Drupal\\\\Core\\\\Database\\\\Query\\\\Truncate\\:\\:\\$condition\\.$#"
 			count: 2
@@ -335,11 +325,6 @@ parameters:
 			count: 1
 			path: lib/Drupal/Core/Extension/Discovery/RecursiveExtensionFilterIterator.php
 
-		-
-			message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Entity\\\\BaseFieldOverride\\:\\:\\$original\\.$#"
-			count: 5
-			path: lib/Drupal/Core/Field/Entity/BaseFieldOverride.php
-
 		-
 			message: "#^Method Drupal\\\\Core\\\\Field\\\\FieldItemBase\\:\\:generateSampleValue\\(\\) should return array but return statement is missing\\.$#"
 			count: 1
@@ -770,11 +755,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
@@ -795,11 +775,6 @@ parameters:
 			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
@@ -930,16 +905,6 @@ parameters:
 			count: 1
 			path: modules/dblog/tests/src/Kernel/DbLogTest.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: "#^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
@@ -1323,16 +1288,6 @@ 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: "#^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
@@ -1398,16 +1353,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: "#^Method Drupal\\\\path\\\\PathAliasForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
 			count: 1
@@ -1463,21 +1408,6 @@ 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: "#^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
@@ -1653,11 +1583,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
@@ -1743,11 +1668,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
@@ -1813,21 +1733,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\\:\\:\\$handler\\.$#"
-			count: 58
-			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
@@ -1843,141 +1748,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
@@ -1993,41 +1768,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: 4
-			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
@@ -2038,11 +1783,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
@@ -2053,31 +1793,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
@@ -2088,101 +1803,26 @@ 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 \\$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\\\\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
@@ -2193,11 +1833,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