Skip to content

Commit

Permalink
Adjust spacing
Browse files Browse the repository at this point in the history
Co-authored-by: Nikolay Strikhar <[email protected]>
  • Loading branch information
borkweb and nikolaystrikhar authored Nov 14, 2023
1 parent 0603824 commit 1cc88e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DB/QueryBuilder/Concerns/CRUD.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function update( $data, $format = null ) {
public function upsert( $data, $match = [], $format = null ) {
// Build the where clause(s).
foreach ( $match as $column ) {
$this->where( $column, $data[$column] );
$this->where( $column, $data[ $column ] );
}

// If the row exists, update it.
Expand Down

0 comments on commit 1cc88e1

Please sign in to comment.