From 38a6bcd79c96dd08d8931237734aed5dbe2fd52f Mon Sep 17 00:00:00 2001 From: Dave Long <dave@longwaveconsulting.com> Date: Wed, 20 Nov 2024 17:59:33 +0000 Subject: [PATCH] SA-CORE-2024-007 by mcdruid, larowlan --- core/modules/views/src/ViewExecutable.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/modules/views/src/ViewExecutable.php b/core/modules/views/src/ViewExecutable.php index fc40f6a32e09..87739a90c96c 100644 --- a/core/modules/views/src/ViewExecutable.php +++ b/core/modules/views/src/ViewExecutable.php @@ -8,6 +8,7 @@ use Drupal\Core\Routing\RouteProviderInterface; use Drupal\Core\Session\AccountInterface; use Drupal\views\Plugin\views\display\DisplayRouterInterface; +use Drupal\views\Plugin\views\query\QueryPluginBase; use Drupal\views\Plugin\ViewsPluginManager; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; @@ -219,7 +220,7 @@ class ViewExecutable { * * @var \Drupal\views\Plugin\views\query\QueryPluginBase */ - public $query = NULL; + public ?QueryPluginBase $query = NULL; /** * The used pager plugin used by the current executed view. -- GitLab