diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2018-10-08 13:05:00 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2018-10-08 13:05:00 +0200 |
commit | 311de17730174dae1f951bdf38a657e6c5453574 (patch) | |
tree | c6141645a762be79dd93e605722840809308e8a5 /core/Command | |
parent | 752f63720791383ff656c599a0f67d94e1ce3cdd (diff) | |
download | nextcloud-server-311de17730174dae1f951bdf38a657e6c5453574.tar.gz nextcloud-server-311de17730174dae1f951bdf38a657e6c5453574.zip |
Rename method to abortIfInterrupted
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 0695582ef50..4eca5bcaab7 100644 --- a/core/Command/Base.php +++ b/core/Command/Base.php @@ -133,7 +133,7 @@ class Base extends Command implements CompletionAwareInterface { * * @throws InterruptedException */ - protected function hasBeenInterrupted() { + protected function abortIfInterrupted() { if ($this->php_pcntl_signal === false) { return; } |