Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / lib / Drupal / Core / Database / Query / PlaceholderInterface.php
1 <?php
2
3 namespace Drupal\Core\Database\Query;
4
5 /**
6  * Interface for a query that accepts placeholders.
7  */
8 interface PlaceholderInterface {
9
10   /**
11    * Returns a unique identifier for this object.
12    */
13   public function uniqueIdentifier();
14
15   /**
16    * Returns the next placeholder ID for the query.
17    *
18    * @return
19    *   The next available placeholder ID as an integer.
20    */
21   public function nextPlaceholder();
22
23 }