Skip to content

Commit

Permalink
fix: cs fixer issues
Browse files Browse the repository at this point in the history
Signed-off-by: Anna Larch <[email protected]>
  • Loading branch information
miaulalala committed Sep 15, 2024
1 parent 61c4504 commit 5e1e577
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/dav/lib/BulkUpload/MultipartRequestParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public function parseNextPart(): array {

$headers = $this->readPartHeaders();

$content = $this->readPartContent((int) $headers['content-length'], $headers['x-file-md5']);
$content = $this->readPartContent((int)$headers['content-length'], $headers['x-file-md5']);

return [$headers, $content];
}
Expand Down
2 changes: 1 addition & 1 deletion apps/dav/lib/Connector/Sabre/FilesReportPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ public function findNodesByFileIds(Node $rootNode, array $fileIds): array {

$results = [];
foreach ($fileIds as $fileId) {
$entry = $folder->getFirstNodeById((int) $fileId);
$entry = $folder->getFirstNodeById((int)$fileId);
if ($entry) {
$results[] = $this->wrapNode($entry);
}
Expand Down

0 comments on commit 5e1e577

Please sign in to comment.