Skip to content

Commit

Permalink
Enhancement: Add match and parameters to element option of trailing_c…
Browse files Browse the repository at this point in the history
…omma_in_multiline fixer
  • Loading branch information
localheinz committed Dec 7, 2023
1 parent c093fb5 commit 81d8942
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
'elements' => [
'arguments',
'arrays',
'match',
'parameters',
],
],
'trim_array_spaces' => true,
Expand Down
2 changes: 1 addition & 1 deletion src/UserNotes/UserNote.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public function __construct(
public string $user,
public string $text,
public int $upvotes = 0,
public int $downvotes = 0
public int $downvotes = 0,
) {
}
}

0 comments on commit 81d8942

Please sign in to comment.