Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
100.00% covered (success)
0 / 0
100.00% covered (success)
100.00%
0 / 0
CRAP
100.00% covered (success)
100.00%
0 / 0
<?php
/**
 * @file
 * Contains \Drupal\Core\Database\Query\PlaceholderInterface.
 */
namespace Drupal\Core\Database\Query;
/**
 * Interface for a query that accepts placeholders.
 */
interface PlaceholderInterface {
  /**
   * Returns a unique identifier for this object.
   */
  public function uniqueIdentifier();
  /**
   * Returns the next placeholder ID for the query.
   *
   * @return
   *   The next available placeholder ID as an integer.
   */
  public function nextPlaceholder();
}