public function QueryFactory::__construct

Same name in this branch
  1. 8.x drupal/core/lib/Drupal/Core/Entity/Query/QueryFactory.php \Drupal\Core\Entity\Query\QueryFactory::__construct()
  2. 8.x drupal/core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php \Drupal\Core\Config\Entity\Query\QueryFactory::__construct()
  3. 8.x drupal/core/modules/field_sql_storage/lib/Drupal/field_sql_storage/Entity/QueryFactory.php \Drupal\field_sql_storage\Entity\QueryFactory::__construct()

Constructs a QueryFactory object.

Parameters

\Drupal\Core\Entity\EntityManager $entity_manager: The entity manager used by the query.

File

drupal/core/lib/Drupal/Core/Entity/Query/QueryFactory.php, line 31
Contains \Drupal\Core\Entity\Query\QueryFactory.

Class

QueryFactory
Factory class Creating entity query objects.

Namespace

Drupal\Core\Entity\Query

Code

public function __construct(EntityManager $entity_manager) {
  $this->entityManager = $entity_manager;
}