@@ 99-111 (lines=13) @@ | ||
96 | * |
|
97 | * @param string $path |
|
98 | */ |
|
99 | public function outputSuccess(string $path): void |
|
100 | { |
|
101 | if ($this->io->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) { |
|
102 | $this->io->writeln( |
|
103 | sprintf( |
|
104 | ' * [<info>OK</info>] %s', |
|
105 | $path |
|
106 | ) |
|
107 | ); |
|
108 | } |
|
109 | ||
110 | $this->progressBar->advance(); |
|
111 | } |
|
112 | ||
113 | public function outputWarnOfFailure(string $path, ParsingException $exception): void |
|
114 | { |
|
@@ 141-153 (lines=13) @@ | ||
138 | * |
|
139 | * @param string $path |
|
140 | */ |
|
141 | public function outputFail(string $path): void |
|
142 | { |
|
143 | if ($this->io->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) { |
|
144 | $this->io->writeln( |
|
145 | sprintf( |
|
146 | ' * [<error>FA</error>] %s', |
|
147 | $path |
|
148 | ) |
|
149 | ); |
|
150 | } |
|
151 | ||
152 | $this->progressBar->advance(); |
|
153 | } |
|
154 | ||
155 | public function outputScopingEnd(): void |
|
156 | { |