| 1 | <?php |
||
| 23 | class ConsoleLogger |
||
| 24 | { |
||
| 25 | private $application; |
||
| 26 | private $io; |
||
| 27 | |||
| 28 | public function __construct(Application $application, OutputInterface $output) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Output version details at start. |
||
| 36 | */ |
||
| 37 | public function outputScopingStart() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Output file count message if relevant. |
||
| 46 | * |
||
| 47 | * @param int $count |
||
| 48 | */ |
||
| 49 | public function outputFileCount(int $count) |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Output scoping success message. |
||
| 58 | * |
||
| 59 | * @param string $path |
||
| 60 | */ |
||
| 61 | public function outputSuccess(string $path) |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Output scoping failure message. |
||
| 68 | * |
||
| 69 | * @param string $path |
||
| 70 | */ |
||
| 71 | public function outputFail(string $path) |
||
| 75 | |||
| 76 | public function outputScopingEnd() |
||
| 79 | } |
||
| 80 |