From d91e15244ee05a4bf376b1c2be72bfa1aaafdec0 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Sun, 27 Aug 2023 17:29:26 +0200 Subject: 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; } -- cgit v1.2.3