public function PerformanceForm::__construct

Constructs a PerformanceForm object.

Parameters

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

\Drupal\Core\Config\Context\ContextInterface $context: The configuration context used for this configuration object.

\Drupal\Core\Cache\CacheBackendInterface $page_cache:

Overrides SystemConfigFormBase::__construct

File

drupal/core/modules/system/lib/Drupal/system/Form/PerformanceForm.php, line 37
Contains \Drupal\system\Form\PerformanceForm.

Class

PerformanceForm
Configure performance settings for this site.

Namespace

Drupal\system\Form

Code

public function __construct(ConfigFactory $config_factory, ContextInterface $context, CacheBackendInterface $page_cache) {
  parent::__construct($config_factory, $context);
  $this->pageCache = $page_cache;
}