diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-07-19 17:32:28 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-07-19 17:32:28 +0200 |
commit | fd0fd97a6594f47c9a5fc4f833c2defa07078ae2 (patch) | |
tree | 2167af388e2cc8b06d9d0ad8103d39356d6118dc /lib/private | |
parent | 7389567c7d05ba994533b7273cba1e5818a20b94 (diff) | |
download | nextcloud-server-fd0fd97a6594f47c9a5fc4f833c2defa07078ae2.tar.gz nextcloud-server-fd0fd97a6594f47c9a5fc4f833c2defa07078ae2.zip |
Fix tests: Adjust constructor signature
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/TextProcessing/Db/Task.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/TextProcessing/Db/Task.php b/lib/private/TextProcessing/Db/Task.php index 8e800c76df8..8c2ddb74f1f 100644 --- a/lib/private/TextProcessing/Db/Task.php +++ b/lib/private/TextProcessing/Db/Task.php @@ -103,7 +103,7 @@ class Task extends Entity { } public function toPublicTask(): OCPTask { - $task = new OCPTask($this->getType(), $this->getInput(), $this->getuserId(), $this->getAppId(), $this->getIdentifier()); + $task = new OCPTask($this->getType(), $this->getInput(), $this->getAppId(), $this->getuserId(), $this->getIdentifier()); $task->setId($this->getId()); $task->setStatus($this->getStatus()); $task->setOutput($this->getOutput()); |