salesforce-8.x-4.x-dev/src/SelectQueryInterface.php
src/SelectQueryInterface.php
<?php
namespace Drupal\salesforce;
/**
* A SOQL query interface.
*/
interface SelectQueryInterface {
/**
* Return the query as a string.
*
* @return string
* The url-encoded query string.
*/
public function __toString();
}
