You are here

public static function ConfigFeaturesImporterService::create in Config Importer and Tools 8.2

Same name and namespace in other branches
  1. 8 src/ConfigFeaturesImporterService.php \Drupal\config_import\ConfigFeaturesImporterService::create()

Overrides ContainerInjectionInterface::create

See also

ConfigImportServiceProvider::registerFeaturesImporter()

File

src/ConfigFeaturesImporterService.php, line 73

Class

ConfigFeaturesImporterService
Class ConfigFeaturesImporterService.

Namespace

Drupal\config_import

Code

public static function create(ContainerInterface $container) {
  return new static($container
    ->get('config_update.config_update'), $container
    ->get('features.manager'), $container
    ->get('features_assigner'), $container
    ->get('logger.factory'));
}