You are here

ConfigFeaturesImporterServiceInterface.php in Config Importer and Tools 8

Same filename and directory in other branches
  1. 8.2 src/ConfigFeaturesImporterServiceInterface.php

File

src/ConfigFeaturesImporterServiceInterface.php
View source
<?php

namespace Drupal\config_import;

use Drupal\Core\DependencyInjection\ContainerInjectionInterface;

/**
 * Interface ConfigFeaturesImporterServiceInterface.
 */
interface ConfigFeaturesImporterServiceInterface extends ContainerInjectionInterface {

  /**
   * Import features.
   *
   * @param string[] $features
   *   Feature names.
   */
  public function importFeatures(array $features);

}

Interfaces

Namesort descending Description
ConfigFeaturesImporterServiceInterface Interface ConfigFeaturesImporterServiceInterface.