class Drush8Io in Drush Language Commands 8
Hierarchy
- class \Drupal\drush_language\Drush8Io
Expanded class hierarchy of Drush8Io
1 file declares its use of Drush8Io
- drush_language.drush.inc in ./
drush_language.drush.inc - Drush (< 9) integration for the drush_language module.
File
- src/
Drush8Io.php, line 14
Namespace
Drupal\drush_languageView source
class Drush8Io {
public function confirm($text) {
return drush_confirm($text);
}
public function success($text) {
drush_log($text, LogLevel::SUCCESS);
}
public function error($text) {
drush_log($text, LogLevel::ERROR);
}
public function text($text) {
drush_log($text, LogLevel::NOTICE);
}
public function warning($text) {
drush_log($text, LogLevel::WARNING);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Drush8Io:: |
public | function | ||
Drush8Io:: |
public | function | ||
Drush8Io:: |
public | function | ||
Drush8Io:: |
public | function | ||
Drush8Io:: |
public | function |