You are here

public function ConfigurationForm::__construct in Progressive Web App 2.x

Same name and namespace in other branches
  1. 8 src/Form/ConfigurationForm.php \Drupal\pwa\Form\ConfigurationForm::__construct()

Constructs a \Drupal\system\ConfigFormBase object.

Parameters

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

Overrides ConfigFormBase::__construct

File

src/Form/ConfigurationForm.php, line 34

Class

ConfigurationForm
Class ConfigurationForm.

Namespace

Drupal\pwa\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, ManifestInterface $manifest) {
  parent::__construct($config_factory);
  $this->manifest = $manifest;
}