| 1 | <?php | ||
| 18 | class Writer implements WriterInterface | ||
| 19 | { | ||
| 20 | use HasConsoleIOTrait; | ||
| 21 | |||
| 22 | /** | ||
| 23 | * @param string $pattern | ||
| 24 | * @param array $arguments | ||
| 25 | * @param bool $default | ||
| 26 | * @return bool | ||
| 27 | */ | ||
| 28 | public function confirm(string $pattern, array $arguments = [], bool $default = true): bool | ||
| 40 | |||
| 41 | /** | ||
| 42 | * @param string $message | ||
| 43 | */ | ||
| 44 | public function writeError(string $message): void | ||
| 59 | } | ||
| 60 | |||
| 61 |