Skip to content
Snippets Groups Projects
Commit f9835053 authored by baysaa's avatar baysaa Committed by Aaron Bauman
Browse files

Issue #3186237 by Baysaa: Remove the print_r in the QueryResult constructor

parent 276e7112
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,6 @@ class QueryResult extends RowsOfFieldsWithMetadata {
* SOQL result.
*/
public function __construct(SelectQueryInterface $query, SelectQueryResult $queryResult) {
print_r($queryResult->records());
$data = [];
foreach ($queryResult->records() as $id => $record) {
$data[$id] = $record->fields();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment