You are here

interface ICLIIO in CMS Content Sync 8

Same name and namespace in other branches
  1. 2.1.x src/Cli/ICLIIO.php \Drupal\cms_content_sync\Cli\ICLIIO
  2. 2.0.x src/Cli/ICLIIO.php \Drupal\cms_content_sync\Cli\ICLIIO

Interface ICLIIO.

Hierarchy

  • interface \Drupal\cms_content_sync\Cli\ICLIIO

Expanded class hierarchy of ICLIIO

All classes that implement ICLIIO

File

src/Cli/ICLIIO.php, line 8

Namespace

Drupal\cms_content_sync\Cli
View source
interface ICLIIO {

  /**
   * Ask the user to confirm interactively.
   *
   * @param string $text
   * @param bool   $default
   *
   * @return bool
   */
  public function confirm($text, $default = true);

  /**
   * @param string $text
   */
  public function success($text);

  /**
   * @param string $text
   */
  public function warning($text);

  /**
   * @param string $text
   */
  public function error($text);

  /**
   * @param string $text
   */
  public function text($text);

}

Members

Namesort descending Modifiers Type Description Overrides
ICLIIO::confirm public function Ask the user to confirm interactively. 1
ICLIIO::error public function 1
ICLIIO::success public function 1
ICLIIO::text public function 1
ICLIIO::warning public function 1