diff options
author | provokateurin <kate@provokateurin.de> | 2024-09-06 09:44:04 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-09-09 11:09:37 +0200 |
commit | 007be83a968e6aee649ff8de173163cb5ef93a86 (patch) | |
tree | 18e03c4a5562989bbd6482e9e6a47f3619b71e30 /lib/private/Command/AsyncBus.php | |
parent | fc10fa592626d154a91d77d35c93beabdc7605c1 (diff) | |
download | nextcloud-server-fix/oc/inheritdoc.tar.gz nextcloud-server-fix/oc/inheritdoc.zip |
fix(OC): Remove doc blocks for OCP implementationsfix/oc/inheritdoc
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib/private/Command/AsyncBus.php')
-rw-r--r-- | lib/private/Command/AsyncBus.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/private/Command/AsyncBus.php b/lib/private/Command/AsyncBus.php index fb7860c9dd8..11d78ad7a09 100644 --- a/lib/private/Command/AsyncBus.php +++ b/lib/private/Command/AsyncBus.php @@ -21,11 +21,6 @@ abstract class AsyncBus implements IBus { */ private $syncTraits = []; - /** - * Schedule a command to be fired - * - * @param \OCP\Command\ICommand | callable $command - */ public function push($command) { if ($this->canRunAsync($command)) { $this->queueCommand($command); @@ -41,11 +36,6 @@ abstract class AsyncBus implements IBus { */ abstract protected function queueCommand($command); - /** - * Require all commands using a trait to be run synchronous - * - * @param string $trait - */ public function requireSync($trait) { $this->syncTraits[] = trim($trait, '\\'); } |