123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Symfony\Component\Console\Tests\Fixtures;
- use Symfony\Component\Console\Output\BufferedOutput;
- class DummyOutput extends BufferedOutput
- {
-
- public function getLogs()
- {
- $logs = [];
- foreach (explode(PHP_EOL, trim($this->fetch())) as $message) {
- preg_match('/^\[(.*)\] (.*)/', $message, $matches);
- $logs[] = sprintf('%s %s', $matches[1], $matches[2]);
- }
- return $logs;
- }
- }
|