SelectQueryInterface.php in Salesforce Suite 8.4
Same filename and directory in other branches
Namespace
Drupal\salesforceFile
src/SelectQueryInterface.phpView source
<?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();
}
Interfaces
Name | Description |
---|---|
SelectQueryInterface | A SOQL query interface. |