diff --git a/core/includes/schema.inc b/core/includes/schema.inc index 3289c8068c..a830c1e05f 100644 --- a/core/includes/schema.inc +++ b/core/includes/schema.inc @@ -166,7 +166,7 @@ function drupal_uninstall_schema($module) { * is returned. * * @deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. Use - * SchemaVersionHandlerInterface::getSchema() instead. + * \Drupal\Core\Extension\ModuleInstallerInterface::getSchema() instead. * * @see https://www.drupal.org/node/2970993 * @see \Drupal\Core\Extension\ModuleInstallerInterface::getSchema() diff --git a/core/lib/Drupal/Core/Extension/ModuleInstallerInterface.php b/core/lib/Drupal/Core/Extension/ModuleInstallerInterface.php index 74288effb6..ac8ff3d478 100644 --- a/core/lib/Drupal/Core/Extension/ModuleInstallerInterface.php +++ b/core/lib/Drupal/Core/Extension/ModuleInstallerInterface.php @@ -91,10 +91,6 @@ public function validateUninstall(array $module_list); * It is also used by ::install() and ::uninstall() to ensure that a module's * tables are created exactly as specified. * - * Note: This function does not pass the module's schema through - * hook_schema_alter(). The module's tables will be returned exactly as the - * module defines them. - * * @param string $module * The module to which the table belongs. * @param string $table