From 243783522d179ccddb52ab07e7f932c40c784344 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Tue, 4 Oct 2022 10:44:24 +0100
Subject: [PATCH] Issue #3006812 by NickDickinsonWilde, Ankit.Gupta:
 ViewsExecutable->exposed_widgets has wrong variable type in definition

---
 core/modules/views/src/ViewExecutable.php | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/core/modules/views/src/ViewExecutable.php b/core/modules/views/src/ViewExecutable.php
index 0b1849fa4b34..84049aec1f0b 100644
--- a/core/modules/views/src/ViewExecutable.php
+++ b/core/modules/views/src/ViewExecutable.php
@@ -351,9 +351,12 @@ class ViewExecutable {
   public $inited;
 
   /**
-   * The rendered output of the exposed form.
+   * The render array for the exposed form.
    *
-   * @var string
+   * In cases that the exposed form is rendered as a block this will be an
+   * empty array.
+   *
+   * @var array
    */
   public $exposed_widgets;
 
-- 
GitLab