public function ConfigSplitCommands::splitExport in Configuration Split 8
Same name and namespace in other branches
- 2.0.x src/Commands/ConfigSplitCommands.php \Drupal\config_split\Commands\ConfigSplitCommands::splitExport()
Export only split configuration to a directory.
@command config-split:export
@usage drush config-split:export development Export development configuration; assumes a "development" split export only that.
@aliases csex
Parameters
string $split: The split configuration to export, if none is given do a normal export.
File
- src/
Commands/ ConfigSplitCommands.php, line 48
Class
- ConfigSplitCommands
- Class ConfigSplitCommands.
Namespace
Drupal\config_split\CommandsCode
public function splitExport($split = NULL) {
$this->cliService
->ioExport($split, $this
->io(), 'dt');
}