You are here

Drush8Io.php in Drush Language Commands 8

File

src/Drush8Io.php
View source
<?php

namespace Drupal\drush_language;

use Drush\Log\LogLevel;

/**
 * Class Drush8Io.
 *
 * 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.
 */

// @codingStandardsIgnoreStart
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);
  }

}

// @codingStandardsIgnoreEnd

Classes

Namesort descending Description
Drush8Io