You are here

public function SplitCommandBase::__construct in Configuration Split 8

Constructor with cli service injection.

Parameters

\Drupal\config_split\ConfigSplitCliService $cliService: The cli service to delegate all actions to.

File

src/Command/SplitCommandBase.php, line 28

Class

SplitCommandBase
Class SplitCommandBase for shared functionality.

Namespace

Drupal\config_split\Command

Code

public function __construct(ConfigSplitCliService $cliService) {
  parent::__construct();
  $this->cliService = $cliService;
}