You are here

interface SelectQueryInterface in Salesforce Suite 5.0.x

Same name and namespace in other branches
  1. 8.4 src/SelectQueryInterface.php \Drupal\salesforce\SelectQueryInterface
  2. 8.3 src/SelectQueryInterface.php \Drupal\salesforce\SelectQueryInterface

A SOQL query interface.

Hierarchy

Expanded class hierarchy of SelectQueryInterface

All classes that implement SelectQueryInterface

5 files declare their use of SelectQueryInterface
QueryResult.php in src/Commands/QueryResult.php
RestClient.php in src/Rest/RestClient.php
RestClientInterface.php in src/Rest/RestClientInterface.php
SalesforceQueryEvent.php in modules/salesforce_mapping/src/Event/SalesforceQueryEvent.php
TestRestClient.php in src/Tests/TestRestClient.php

File

src/SelectQueryInterface.php, line 8

Namespace

Drupal\salesforce
View source
interface SelectQueryInterface {

  /**
   * Return the query as a string.
   *
   * @return string
   *   The url-encoded query string.
   */
  public function __toString();

}

Members

Namesort descending Modifiers Type Description Overrides
SelectQueryInterface::__toString public function Return the query as a string. 2