public function SelectExtender::andConditionGroup in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/Query/SelectExtender.php \Drupal\Core\Database\Query\SelectExtender::andConditionGroup()
 
Creates a new group of conditions ANDed together.
Return value
\Drupal\Core\Database\Query\ConditionInterface
Overrides ConditionInterface::andConditionGroup
File
- core/
lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php, line 538  
Class
- SelectExtender
 - The base extender class for Select queries.
 
Namespace
Drupal\Core\Database\QueryCode
public function andConditionGroup() {
  return $this
    ->conditionGroupFactory('AND');
}