From 5b941132a43f0ea5bcc29fb42be510c3e8bf07ca Mon Sep 17 00:00:00 2001 From: Ted Bowman <ted@tedbow.com> Date: Tue, 11 Jan 2022 13:00:05 -0500 Subject: [PATCH] nit --- package_manager/src/Event/PostDestroyEvent.php | 4 ++-- package_manager/src/Event/PreDestroyEvent.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package_manager/src/Event/PostDestroyEvent.php b/package_manager/src/Event/PostDestroyEvent.php index 4e6382b59a..283bf69e34 100644 --- a/package_manager/src/Event/PostDestroyEvent.php +++ b/package_manager/src/Event/PostDestroyEvent.php @@ -5,8 +5,8 @@ namespace Drupal\package_manager\Event; /** * Event fired after the staging area is destroyed. * - * If the stage is being force destroyed ::getStage() may return an instance of - * Stage that is different from the instance that created the stage. + * If the stage is being force destroyed, ::getStage() may return an object of a + * different class than the one that originally created the staging area. * * @see \Drupal\package_manager\Stage::destroy() */ diff --git a/package_manager/src/Event/PreDestroyEvent.php b/package_manager/src/Event/PreDestroyEvent.php index 0f0dedb2b7..3a876312a2 100644 --- a/package_manager/src/Event/PreDestroyEvent.php +++ b/package_manager/src/Event/PreDestroyEvent.php @@ -5,8 +5,8 @@ namespace Drupal\package_manager\Event; /** * Event fired before the staging area is destroyed. * - * If the stage is being force destroyed ::getStage() may return an instance of - * Stage that is different from the instance that created the stage. + * If the stage is being force destroyed, ::getStage() may return an object of a + * different class than the one that originally created the staging area. * * @see \Drupal\package_manager\Stage::destroy() */ -- GitLab