function Select::getArguments

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Database/Query/Select.php \Drupal\Core\Database\Query\Select::getArguments()

File

core/lib/Drupal/Core/Database/Query/Select.php, line 444

Class

Select
Query builder for SELECT statements.

Namespace

Drupal\Core\Database\Query

Code

public function getArguments(PlaceholderInterface $queryPlaceholder = NULL) {
  if (!isset($queryPlaceholder)) {
    $queryPlaceholder = $this;
  }
  $this->compile($this->connection, $queryPlaceholder);
  return $this->arguments();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.