refactor: add trailing_comma lint rule

Signed-off-by: Saw-jan <saw.jan.grg3e@gmail.com>
This commit is contained in:
Saw-jan
2025-06-19 10:46:56 +05:45
parent 98c96efa46
commit 43865a9646
28 changed files with 226 additions and 225 deletions

View File

@@ -393,7 +393,7 @@ trait WebDav {
$urlParameter = [
'x' => $width,
'y' => $height,
'preview' => '1'
'preview' => '1',
];
return $this->makeDavRequest(
$user,
@@ -3623,7 +3623,7 @@ trait WebDav {
$urlParameter = [
'x' => $width,
'y' => $height,
'preview' => '0'
'preview' => '0',
];
$response = $this->makeDavRequest(
$user,
@@ -3687,7 +3687,7 @@ trait WebDav {
'x' => $width,
'y' => $height,
'preview' => '1',
'processor' => $processor
'processor' => $processor,
];
$response = $this->makeDavRequest(
$user,
@@ -3725,7 +3725,7 @@ trait WebDav {
$urlParameter = [
'x' => $width,
'y' => $height,
'preview' => '1'
'preview' => '1',
];
$spaceId = $this->spacesContext->getSharesRemoteItemId($user, $path);
$this->setResponse(
@@ -3875,7 +3875,7 @@ trait WebDav {
'x' => $width,
'y' => $height,
'forceIcon' => '0',
'preview' => '1'
'preview' => '1',
];
$urlParameter = \http_build_query($urlParameter, '', '&');
} else {