interface ICLIIO in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x src/Cli/ICLIIO.php \Drupal\cms_content_sync\Cli\ICLIIO
- 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\CliView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ICLIIO:: |
public | function | Ask the user to confirm interactively. | 1 |
ICLIIO:: |
public | function | 1 | |
ICLIIO:: |
public | function | 1 | |
ICLIIO:: |
public | function | 1 | |
ICLIIO:: |
public | function | 1 |