public function QueryResult::getPrettyQuery in Salesforce Suite 8.3
Same name and namespace in other branches
- 8.4 src/Commands/QueryResult.php \Drupal\salesforce\Commands\QueryResult::getPrettyQuery()
- 5.0.x src/Commands/QueryResult.php \Drupal\salesforce\Commands\QueryResult::getPrettyQuery()
Get a prettified query.
Return value
string Strip '+' escaping from the query.
File
- src/
Commands/ QueryResult.php, line 74
Class
- QueryResult
- Adds structured metadata to RowsOfFieldsWithMetadata.
Namespace
Drupal\salesforce\CommandsCode
public function getPrettyQuery() {
return str_replace('+', ' ', (string) $this->query);
}