| 1 | <?php |
||
| 29 | final class Symfony implements IFormatter |
||
| 30 | { |
||
| 31 | /** |
||
| 32 | * @var Console\Style\SymfonyStyle |
||
| 33 | */ |
||
| 34 | private $output; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param Console\Style\SymfonyStyle $output |
||
| 38 | */ |
||
| 39 | public function __construct(Console\Style\SymfonyStyle $output) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function error(string $message) |
||
| 51 | |||
| 52 | /** |
||
| 53 | * {@inheritdoc} |
||
| 54 | */ |
||
| 55 | public function warning(string $message) |
||
| 59 | |||
| 60 | /** |
||
| 61 | * {@inheritdoc} |
||
| 62 | */ |
||
| 63 | public function note(string $message) |
||
| 67 | |||
| 68 | /** |
||
| 69 | * {@inheritdoc} |
||
| 70 | */ |
||
| 71 | public function caution(string $message) |
||
| 75 | } |
||
| 76 |