Skip to content
Snippets Groups Projects

Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS

Closed Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS
Closed Harumi Jang requested to merge issue/drupal-3238915:3238915-refactor-if-feasible into 9.3.x
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
  • da178766
    Issue #3247414 by anagomes, Beakerboy: Incorrect docblock types for... · da178766
    catch authored
    Issue #3247414 by anagomes, Beakerboy: Incorrect docblock types for $statementClass and $statementWrapperClass properties in Connection
@@ -73,7 +73,7 @@ abstract class Connection {
@@ -73,7 +73,7 @@ abstract class Connection {
/**
/**
* The name of the Statement class for this 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
* @deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. Database
* drivers should use or extend StatementWrapper instead, and encapsulate
* drivers should use or extend StatementWrapper instead, and encapsulate
@@ -86,7 +86,7 @@ abstract class Connection {
@@ -86,7 +86,7 @@ abstract class Connection {
/**
/**
* The name of the StatementWrapper class for this connection.
* The name of the StatementWrapper class for this connection.
*
*
* @var string
* @var string|null
*/
*/
protected $statementWrapperClass = NULL;
protected $statementWrapperClass = NULL;
Loading