aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Command/QueueBus.php
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2024-09-06 09:44:04 +0200
committerprovokateurin <kate@provokateurin.de>2024-09-09 11:09:37 +0200
commit007be83a968e6aee649ff8de173163cb5ef93a86 (patch)
tree18e03c4a5562989bbd6482e9e6a47f3619b71e30 /lib/private/Command/QueueBus.php
parentfc10fa592626d154a91d77d35c93beabdc7605c1 (diff)
downloadnextcloud-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/QueueBus.php')
-rw-r--r--lib/private/Command/QueueBus.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/private/Command/QueueBus.php b/lib/private/Command/QueueBus.php
index ed7d43b38b6..02d986430a5 100644
--- a/lib/private/Command/QueueBus.php
+++ b/lib/private/Command/QueueBus.php
@@ -16,20 +16,10 @@ class QueueBus implements IBus {
*/
private $queue = [];
- /**
- * Schedule a command to be fired
- *
- * @param \OCP\Command\ICommand | callable $command
- */
public function push($command) {
$this->queue[] = $command;
}
- /**
- * Require all commands using a trait to be run synchronous
- *
- * @param string $trait
- */
public function requireSync($trait) {
}