aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Command/QueueBus.php
diff options
context:
space:
mode:
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) {
}