You are here

public function QueryFactory::__construct in Drupal 9

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

Constructs a QueryFactory object.

File

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

Class

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

Namespace

Drupal\Core\Entity\Query\Null

Code

public function __construct() {
  $this->namespaces = QueryBase::getNamespaces($this);
}