You are here

protected function CommandBase::initialize in Tome 8

File

modules/tome_base/src/CommandBase.php, line 37

Class

CommandBase
Contains a base class for Tome commands.

Namespace

Drupal\tome_base

Code

protected function initialize(InputInterface $input, OutputInterface $output) {
  $this->io = new SymfonyStyle($input, $output);
  $this->executable = $this
    ->findExecutable($input);
}