Skip to content

Commit

Permalink
Remove more trailing commas in functions
Browse files Browse the repository at this point in the history
  • Loading branch information
johngodley committed Jul 28, 2022
1 parent cf50e7d commit cf3a06f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion includes/source/class-source.php
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ protected function get_query_selects() {
// Table ID column
[ new Sql\Select\Select( Sql\Value::table( $this->get_table_name() ), Sql\Value::column( $this->get_table_id() ) ) ],
// Any extra 'info' columns
$this->get_info_columns(),
$this->get_info_columns()
);
}

Expand Down
2 changes: 1 addition & 1 deletion includes/source/core/source-comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function get_row_columns( $row_id ) {

return array_merge(
$row_columns,
count( $meta ) > 0 ? [ $meta ] : [],
count( $meta ) > 0 ? [ $meta ] : []
);
}

Expand Down
2 changes: 1 addition & 1 deletion includes/source/core/source-user.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function get_row_columns( $row_id ) {

return array_merge(
$parent,
count( $meta ) > 0 ? [ $meta ] : [],
count( $meta ) > 0 ? [ $meta ] : []
);
}

Expand Down

0 comments on commit cf3a06f

Please sign in to comment.