ConfigFeaturesImporterServiceInterface.php in Config Importer and Tools 8.2
Same filename and directory in other branches
Namespace
Drupal\config_importFile
src/ConfigFeaturesImporterServiceInterface.phpView 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
Name | Description |
---|---|
ConfigFeaturesImporterServiceInterface | Interface ConfigFeaturesImporterServiceInterface. |