You are here

public function FeaturesConfigInstaller::createConfiguration in Features 8.3

Same name and namespace in other branches
  1. 8.4 src/FeaturesConfigInstaller.php \Drupal\features\FeaturesConfigInstaller::createConfiguration()

Creates configuration in a collection based on the provided list.

Parameters

string $collection: The configuration collection.

array $config_to_create: An array of configuration data to create, keyed by name.

Overrides ConfigInstaller::createConfiguration

File

src/FeaturesConfigInstaller.php, line 98

Class

FeaturesConfigInstaller
Class for customizing the test for pre existing configuration.

Namespace

Drupal\features

Code

public function createConfiguration($collection, array $config_to_create) {
  return parent::createConfiguration($collection, $config_to_create);
}