You are here

public function QueryFactory::get in Drupal 10

Same name in this branch
  1. 10 core/modules/workspaces/src/EntityQuery/QueryFactory.php \Drupal\workspaces\EntityQuery\QueryFactory::get()
  2. 10 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php \Drupal\Core\Config\Entity\Query\QueryFactory::get()
  3. 10 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php \Drupal\Core\Entity\KeyValueStore\Query\QueryFactory::get()
  4. 10 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php \Drupal\Core\Entity\Query\Sql\QueryFactory::get()
  5. 10 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php \Drupal\Core\Entity\Query\Null\QueryFactory::get()
Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php \Drupal\Core\Entity\Query\Null\QueryFactory::get()
  2. 9 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php \Drupal\Core\Entity\Query\Null\QueryFactory::get()

File

core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php, line 31

Class

QueryFactory
Provides a factory for creating entity query objects for the null backend.

Namespace

Drupal\Core\Entity\Query\Null

Code

public function get(EntityTypeInterface $entity_type, $conjunction) {
  return new Query($entity_type, $conjunction, $this->namespaces);
}