| 1 | <?php |
||
| 20 | class NullIO extends Base |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * {@inheritDoc} |
||
| 24 | */ |
||
| 25 | 1 | public function isInteractive() |
|
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritDoc} |
||
| 32 | */ |
||
| 33 | 1 | public function isVerbose() |
|
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritDoc} |
||
| 40 | */ |
||
| 41 | 1 | public function isVeryVerbose() |
|
| 45 | |||
| 46 | /** |
||
| 47 | * {@inheritDoc} |
||
| 48 | */ |
||
| 49 | 1 | public function isDebug() |
|
| 53 | |||
| 54 | /** |
||
| 55 | * {@inheritDoc} |
||
| 56 | */ |
||
| 57 | 6 | public function write($messages, $newline = true, $verbosity = self::NORMAL) |
|
| 60 | |||
| 61 | /** |
||
| 62 | * {@inheritDoc} |
||
| 63 | */ |
||
| 64 | 1 | public function writeError($messages, $newline = true, $verbosity = self::NORMAL) |
|
| 67 | |||
| 68 | /** |
||
| 69 | * {@inheritDoc} |
||
| 70 | */ |
||
| 71 | 2 | public function ask($question, $default = null) |
|
| 75 | |||
| 76 | /** |
||
| 77 | * {@inheritDoc} |
||
| 78 | */ |
||
| 79 | 1 | public function askConfirmation($question, $default = true) |
|
| 83 | |||
| 84 | /** |
||
| 85 | * {@inheritDoc} |
||
| 86 | */ |
||
| 87 | 1 | public function askAndValidate($question, $validator, $attempts = false, $default = null) |
|
| 91 | } |
||
| 92 |