From 84230059e97de07c721e61111f747f5e62c61e9a Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Sun, 27 Aug 2023 17:29:26 +0200 Subject: [PATCH] fix: make cancelOperation public Signed-off-by: Daniel Kesselberg --- core/Command/Base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Command/Base.php b/core/Command/Base.php index abf9f95773a..2581e273cb9 100644 --- a/core/Command/Base.php +++ b/core/Command/Base.php @@ -161,7 +161,7 @@ class Base extends Command implements CompletionAwareInterface { * * Gives a chance to the command to properly terminate what it's doing */ - protected function cancelOperation() { + public function cancelOperation(): void { $this->interrupted = true; }