Skip to content

Commit fd0fd97

Browse files
committed
Fix tests: Adjust constructor signature
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
1 parent 7389567 commit fd0fd97

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/private/TextProcessing/Db/Task.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public static function fromPublicTask(OCPTask $task): Task {
103103
}
104104

105105
public function toPublicTask(): OCPTask {
106-
$task = new OCPTask($this->getType(), $this->getInput(), $this->getuserId(), $this->getAppId(), $this->getIdentifier());
106+
$task = new OCPTask($this->getType(), $this->getInput(), $this->getAppId(), $this->getuserId(), $this->getIdentifier());
107107
$task->setId($this->getId());
108108
$task->setStatus($this->getStatus());
109109
$task->setOutput($this->getOutput());

0 commit comments

Comments
 (0)