public 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 525
Class
- SelectExtender
- The base extender class for Select queries.
Namespace
Drupal\Core\Database\Query
Code
1 2 3 | public function andConditionGroup() { return $this ->conditionGroupFactory( 'AND' ); } |
Please login to continue.