From da17876671ae476b4ab892c032cd88fd648fc25f Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Mon, 22 Nov 2021 17:07:32 +0000 Subject: [PATCH] Issue #3247414 by anagomes, Beakerboy: Incorrect docblock types for $statementClass and $statementWrapperClass properties in Connection --- core/lib/Drupal/Core/Database/Connection.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/Drupal/Core/Database/Connection.php b/core/lib/Drupal/Core/Database/Connection.php index 4f28e5b669a7..67c601d3db0e 100644 --- a/core/lib/Drupal/Core/Database/Connection.php +++ b/core/lib/Drupal/Core/Database/Connection.php @@ -73,7 +73,7 @@ abstract class Connection { /** * The name of the Statement class for this connection. * - * @var string + * @var string|null * * @deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. Database * drivers should use or extend StatementWrapper instead, and encapsulate @@ -86,7 +86,7 @@ abstract class Connection { /** * The name of the StatementWrapper class for this connection. * - * @var string + * @var string|null */ protected $statementWrapperClass = NULL; -- GitLab