You are here

public function ConfigSplitCommands::splitExport in Configuration Split 2.0.x

Same name and namespace in other branches
  1. 8 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 configuration of the "development" split

Propose an alias at: https://www.drupal.org/project/config_split/issues/3181368

Parameters

string $split: The split configuration to export.

File

src/Commands/ConfigSplitCommands.php, line 48

Class

ConfigSplitCommands
The Drush 10 commands.

Namespace

Drupal\config_split\Commands

Code

public function splitExport($split) {
  return $this->cliService
    ->ioExport($split, $this
    ->io(), 'dt');
}