Skip to content

Commit

Permalink
Fixed bug with results array
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirk Scholten committed Feb 14, 2020
1 parent 0ec4df2 commit 8654c30
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Phpforce/SoapClient/BulkSaver.php
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,9 @@ public function clear()
$this->bulkDeleteRecords = [];
$this->bulkUpdateRecords = [];
$this->bulkUpsertRecords = [];
$this->results = [];
$this->results['created'] = [];
$this->results['deleted'] = [];
$this->results['updated'] = [];
$this->results['upserted'] = [];
}
}

0 comments on commit 8654c30

Please sign in to comment.