function QueryFactory::__construct
Constructs a QueryFactory object.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config storage used by the config entity query.
\Drupal\Core\KeyValueStore\KeyValueFactoryInterface $key_value: The key value factory.
\Drupal\Core\Config\ConfigManagerInterface $config_manager: The configuration manager.
File
- 
              core/
lib/ Drupal/ Core/ Config/ Entity/ Query/ QueryFactory.php, line 62  
Class
- QueryFactory
 - Provides a factory for creating entity query objects for the config backend.
 
Namespace
Drupal\Core\Config\Entity\QueryCode
public function __construct(ConfigFactoryInterface $config_factory, KeyValueFactoryInterface $key_value, ConfigManagerInterface $config_manager) {
  $this->configFactory = $config_factory;
  $this->keyValueFactory = $key_value;
  $this->configManager = $config_manager;
  $this->namespaces = QueryBase::getNamespaces($this);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.