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
Add return type
Co-authored-by: Carl Schwan <[email protected]>
  • Loading branch information
marcelklehr and CarlSchwan authored Apr 27, 2022
commit d5a9f868aea38f597c5840fe06ba740f8ad8f741
2 changes: 1 addition & 1 deletion apps/dav/lib/Connector/Sabre/FilesPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ public function handleGetProperties(PropFind $propFind, \Sabre\DAV\INode $node)
$propFind->handle(self::CREATION_TIME_PROPERTYNAME, function () use ($node) {
return $node->getFileInfo()->getCreationTime();
});
$propFind->handle(self::CREATIONDATE_PROPERTYNAME, function () use ($node) {
$propFind->handle(self::CREATIONDATE_PROPERTYNAME, function () use ($node): int {
return $node->getFileInfo()->getCreationTime();
});
}
Expand Down