You are here

ICLIIO.php in CMS Content Sync 8

Same filename and directory in other branches
  1. 2.1.x src/Cli/ICLIIO.php
  2. 2.0.x src/Cli/ICLIIO.php

File

src/Cli/ICLIIO.php
View source
<?php

namespace Drupal\cms_content_sync\Cli;


/**
 * Interface ICLIIO.
 */
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);

}

Interfaces

Namesort descending Description
ICLIIO Interface ICLIIO.