Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Use multiline comment in AbstractTrash
  • Loading branch information
scriptator authored Oct 20, 2019
commit e4c27e5241fcf1fdec9cf9f3f2c8e8c236a99413
6 changes: 4 additions & 2 deletions apps/files_trashbin/lib/Sabre/AbstractTrash.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@ public function getFileInfo(): FileInfo {
return $this->data;
}

// Removal of return type is intentional as int is not large enough on 32 bit systems
// see https://github.com/nextcloud/server/issues/13160
/**
* Removal of return type is intentional as int is not large enough on 32 bit systems
* see https://github.com/nextcloud/server/issues/13160
*/
public function getSize() {
return $this->data->getSize();
}
Expand Down