You are here

public function JsonQueryMapConfigForm::__construct in GraphQL 8.3

QueryMapConfigForm constructor.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $configFactory: The factory for configuration objects.

\Drupal\Core\Cache\CacheBackendInterface $cacheBackend: The default cache backend.

Overrides ConfigFormBase::__construct

File

src/Form/JsonQueryMapConfigForm.php, line 41

Class

JsonQueryMapConfigForm
Configure performance settings for this site.

Namespace

Drupal\graphql\Form

Code

public function __construct(ConfigFactoryInterface $configFactory, CacheBackendInterface $cacheBackend) {
  parent::__construct($configFactory);
  $this->cacheBackend = $cacheBackend;
}