public function Schema::nextPlaceholder in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Database/Schema.php \Drupal\Core\Database\Schema::nextPlaceholder()
Returns the next placeholder ID for the query.
Return value
The next available placeholder ID as an integer.
Overrides PlaceholderInterface::nextPlaceholder
File
- core/
lib/ Drupal/ Core/ Database/ Schema.php, line 68 - Contains \Drupal\Core\Database\Schema.
Class
- Schema
- Provides a base implementation for Database Schema.
Namespace
Drupal\Core\DatabaseCode
public function nextPlaceholder() {
return $this->placeholder++;
}