diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2023-08-27 17:29:26 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2023-08-27 17:55:20 +0200 |
commit | 84230059e97de07c721e61111f747f5e62c61e9a (patch) | |
tree | f3997e3e63f383a2b64e6c4611d71316e15a5718 /core/Command | |
parent | 8f4614be164b30790724f8d38d3dc4cc42f8498f (diff) | |
download | nextcloud-server-84230059e97de07c721e61111f747f5e62c61e9a.tar.gz nextcloud-server-84230059e97de07c721e61111f747f5e62c61e9a.zip |
fix: make cancelOperation public
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/Base.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |