diff --git a/core/lib/Drupal/Core/Database/StatementWrapper.php b/core/lib/Drupal/Core/Database/StatementWrapper.php index 30e2546677..5e2a93bb2f 100644 --- a/core/lib/Drupal/Core/Database/StatementWrapper.php +++ b/core/lib/Drupal/Core/Database/StatementWrapper.php @@ -2,6 +2,8 @@ namespace Drupal\Core\Database; +// cSpell:ignore maxlen driverdata INOUT + /** * Implementation of StatementInterface encapsulating PDOStatement. */ @@ -51,7 +53,8 @@ public function __construct(Connection $connection, $client_connection, string $ /** * Implements the magic __get() method. * - * @deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. + * @deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. Access the + * client-level statement object via ::getClientStatement(). * * @see https://www.drupal.org/node/3177488 */ @@ -65,7 +68,8 @@ public function __get($name) { /** * Implements the magic __call() method. * - * @deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. + * @deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. Access the + * client-level statement object via ::getClientStatement(). * * @see https://www.drupal.org/node/3177488 */