diff --git a/core/lib/Drupal/Core/Config/ConfigEvents.php b/core/lib/Drupal/Core/Config/ConfigEvents.php index 349d95824aa897e843f599e41ac712d9d7d17fb5..8aa2d8d65fc12a87547a45e537052f8d49f9fda7 100644 --- a/core/lib/Drupal/Core/Config/ConfigEvents.php +++ b/core/lib/Drupal/Core/Config/ConfigEvents.php @@ -121,7 +121,7 @@ final class ConfigEvents { * fire the event again to continue processing missing content dependencies. * * @see \Drupal\Core\Config\ConfigImporter::processMissingContent() - * @see \Drupal\Core\Config\MissingContentEvent + * @see \Drupal\Core\Config\Importer\MissingContentEvent */ const IMPORT_MISSING_CONTENT = 'config.importer.missing_content'; diff --git a/core/lib/Drupal/Core/Config/Importer/MissingContentEvent.php b/core/lib/Drupal/Core/Config/Importer/MissingContentEvent.php index 9b7baf76e0f952e8bb62e3eb3abfd1c2ce7cf6c3..e23029707fd8d21aab92f2651e4b654dd3d28600 100644 --- a/core/lib/Drupal/Core/Config/Importer/MissingContentEvent.php +++ b/core/lib/Drupal/Core/Config/Importer/MissingContentEvent.php @@ -7,7 +7,7 @@ /** * Wraps a configuration event for event listeners. * - * @see \Drupal\Core\Config\Config\ConfigEvents::IMPORT_MISSING_CONTENT + * @see \Drupal\Core\Config\ConfigEvents::IMPORT_MISSING_CONTENT */ class MissingContentEvent extends Event {