Interface for a query that accepts placeholders.
| Name | Description |
|---|---|
| QueryPlaceholderInterface::nextPlaceholder | Returns the next placeholder ID for the query. |
drupal/
<?php
interface QueryPlaceholderInterface {
/**
* Returns the next placeholder ID for the query.
*
* @return
* The next available placeholder ID as an integer.
*/
function nextPlaceholder();
}
?>