diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php b/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php index 6fd999e..c952630 100644 --- a/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php +++ b/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php @@ -120,7 +120,7 @@ protected function createTableSql($name, $table) { // By default, MySQL uses the default collation for new tables, which is // 'utf8mb4_general_ci' for utf8mb4. If an alternate collation has been // set, it needs to be explicitly specified. - // @see DatabaseConnection_mysql + // @see \Drupal\Core\Database\Driver\mysql\Schema if (!empty($info['collation'])) { $sql .= ' COLLATE ' . $info['collation']; } diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php index 72f35da..9b98754 100644 --- a/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php +++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php @@ -20,8 +20,8 @@ class Schema extends DatabaseSchema { /** * A cache of information about blob columns and sequences of tables. * - * This is collected by DatabaseConnection_pgsql->queryTableInformation(), - * by introspecting the database. + * This is collected by Schema::queryTableInformation(), by introspecting the + * database. * * @see \Drupal\Core\Database\Driver\pgsql\Schema::queryTableInformation() * @var array