fixed more indentations

This commit is contained in:
Jonathan Treffler 2025-07-02 14:46:05 +02:00
parent acf8990de1
commit f031591753
9 changed files with 148 additions and 148 deletions

View file

@ -7,25 +7,25 @@ use OCP\AppFramework\Db\Entity;
class DiffTask extends Entity implements JsonSerializable {
protected $userId;
protected $groupfolderId;
protected $userId;
protected $groupfolderId;
protected $relativePath;
protected $snapshotId;
protected $timestamp;
protected $snapshotId;
protected $timestamp;
public function __construct() {
$this->addType('id','integer');
$this->addType('groupfolderId','integer');
}
public function __construct() {
$this->addType('id','integer');
$this->addType('groupfolderId','integer');
}
public function jsonSerialize() {
return [
'id' => $this->id,
public function jsonSerialize() {
return [
'id' => $this->id,
'userId' => $this->userId,
'groupfolderId' => $this->groupfolderId,
'groupfolderId' => $this->groupfolderId,
'relativePath' => $this->relativePath,
'snapshotId' => $this->snapshotId,
'timestamp' => $this->timestamp,
];
}
'snapshotId' => $this->snapshotId,
'timestamp' => $this->timestamp,
];
}
}