Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Database/Schema.php \Drupal\Core\Database\Schema::nextPlaceholder()
  2. 9 core/lib/Drupal/Core/Database/Schema.php \Drupal\Core\Database\Schema::nextPlaceholder()

Returns the next placeholder ID for the query.

Return value

int The next available placeholder ID as an integer.

Overrides PlaceholderInterface::nextPlaceholder

File

core/lib/Drupal/Core/Database/Schema.php, line 68

Class

Schema
Provides a base implementation for Database Schema.

Namespace

Drupal\Core\Database

Code

public function nextPlaceholder() {
  return $this->placeholder++;
}