You are here

public function PgsqlQueryFactory::get in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php \Drupal\workspaces\EntityQuery\PgsqlQueryFactory::get()
  2. 9 core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php \Drupal\workspaces\EntityQuery\PgsqlQueryFactory::get()

Instantiates an entity query for a given entity type.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

string $conjunction: The operator to use to combine conditions: 'AND' or 'OR'.

Return value

\Drupal\Core\Entity\Query\QueryInterface An entity query for a specific configuration entity type.

Overrides QueryFactory::get

File

core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php, line 40

Class

PgsqlQueryFactory
Workspaces PostgreSQL-specific entity query implementation.

Namespace

Drupal\workspaces\EntityQuery

Code

public function get(EntityTypeInterface $entity_type, $conjunction) {
  $class = QueryBase::getClass($this->namespaces, 'Query');
  return new $class($entity_type, $conjunction, $this->connection, $this->namespaces, $this->workspaceManager);
}