| 1 | <?php |
||
| 11 | class Style extends SymfonyStyle { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Minimum verbosity level at which any output is displayed. |
||
| 15 | */ |
||
| 16 | const MIN_VERBOSITY = Output::VERBOSITY_VERBOSE; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The error output is forced. |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | public function error( $message ) { |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function section( $message ) { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | public function title( $message ) { |
||
| 46 | } |
||
| 47 |