| @@ 89-101 (lines=13) @@ | ||
| 86 | * |
|
| 87 | * @param string $path |
|
| 88 | */ |
|
| 89 | public function outputSuccess(string $path) |
|
| 90 | { |
|
| 91 | if ($this->io->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) { |
|
| 92 | $this->io->writeln( |
|
| 93 | sprintf( |
|
| 94 | ' * [<info>OK</info>] %s', |
|
| 95 | $path |
|
| 96 | ) |
|
| 97 | ); |
|
| 98 | } |
|
| 99 | ||
| 100 | $this->progressBar->advance(); |
|
| 101 | } |
|
| 102 | ||
| 103 | public function outputWarnOfFailure(string $path, ParsingException $exception) |
|
| 104 | { |
|
| @@ 131-143 (lines=13) @@ | ||
| 128 | * |
|
| 129 | * @param string $path |
|
| 130 | */ |
|
| 131 | public function outputFail(string $path) |
|
| 132 | { |
|
| 133 | if ($this->io->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) { |
|
| 134 | $this->io->writeln( |
|
| 135 | sprintf( |
|
| 136 | ' * [<error>FA</error>] %s', |
|
| 137 | $path |
|
| 138 | ) |
|
| 139 | ); |
|
| 140 | } |
|
| 141 | ||
| 142 | $this->progressBar->advance(); |
|
| 143 | } |
|
| 144 | ||
| 145 | public function outputScopingEnd() |
|
| 146 | { |
|