fixed more indentations
This commit is contained in:
parent
acf8990de1
commit
f031591753
9 changed files with 148 additions and 148 deletions
|
@ -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,
|
||||
];
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue