You are here

SelectQueryInterface.php in Salesforce Suite 5.0.x

Same filename and directory in other branches
  1. 8.4 src/SelectQueryInterface.php
  2. 8.3 src/SelectQueryInterface.php

Namespace

Drupal\salesforce

File

src/SelectQueryInterface.php
View 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

Namesort descending Description
SelectQueryInterface A SOQL query interface.