You are here

public function CheckSettings::__construct in Security Review 8

Creates a CheckSettings instance.

Parameters

\Drupal\security_review\Check $check: The parent Check.

\Drupal\Core\Config\Config $config: The parent Check's configuration.

File

src/CheckSettings.php, line 34

Class

CheckSettings
Defines the default implementation of CheckSettingsInterface.

Namespace

Drupal\security_review

Code

public function __construct(Check $check, Config &$config) {
  $this->check = $check;
  $this->config = $config;
}