refactor: cosmetic changes (#6123)

This commit is contained in:
Alexis Saettler
2022-05-04 23:15:44 +02:00
committed by GitHub
parent 61ef0c017a
commit 1a00864eff
118 changed files with 192 additions and 176 deletions
@@ -92,7 +92,10 @@ trait SyncDAVBackend
public function getLastModified($collectionId)
{
return $this->getObjects($collectionId)
->max('updated_at');
->map(function ($object) {
return $object->updated_at;
})
->max();
}
/**