You are here

class ConfigSplitDrush8Io in Configuration Split 8

Class ConfigSplitDrush8Io.

This is a stand in for \Symfony\Component\Console\Style\StyleInterface with drush 8 so that we don't need to depend on symfony components.

Hierarchy

Expanded class hierarchy of ConfigSplitDrush8Io

File

./config_split.drush.inc, line 76
Drush integration for the config_split module.

View source
class ConfigSplitDrush8Io {
  public function confirm($text) {
    return drush_confirm($text);
  }
  public function success($text) {
    drush_log($text, LogLevel::SUCCESS);
  }
  public function warning($text) {
    drush_log($text, LogLevel::WARNING);
  }
  public function error($text) {
    drush_log($text, LogLevel::ERROR);
  }
  public function text($text) {
    drush_log($text, LogLevel::NOTICE);
  }

}

Members