You are here

public function QueryFactory::__construct in Apigee Edge 8

Constructs a QueryFactory object.

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

File

src/Entity/Query/QueryFactory.php, line 53

Class

QueryFactory
Factory for creating entity query objects for the Apigee Edge backend.

Namespace

Drupal\apigee_edge\Entity\Query

Code

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