class Drush8Io in Entity Share 8
Same name and namespace in other branches
- 8.2 modules/entity_share_client/src/Drush8Io.php \Drupal\entity_share_client\Drush8Io
Hierarchy
- class \Drupal\entity_share_client\Drush8Io
Expanded class hierarchy of Drush8Io
1 file declares its use of Drush8Io
- entity_share_client.drush.inc in modules/entity_share_client/ entity_share_client.drush.inc 
- Drush (< 9) integration for the entity_share_client module.
File
- modules/entity_share_client/ src/ Drush8Io.php, line 14 
Namespace
Drupal\entity_share_clientView 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);
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| Drush8Io:: | public | function | ||
| Drush8Io:: | public | function | ||
| Drush8Io:: | public | function | ||
| Drush8Io:: | public | function | 
