@@ 68-75 (lines=8) @@ | ||
65 | ||
66 | } |
|
67 | ||
68 | protected function displaySources(OutputInterface $output) |
|
69 | { |
|
70 | $formatter = $this->getHelper('formatter'); |
|
71 | ||
72 | foreach ($this->sourcesRegistry as $source) { |
|
73 | $output->writeln($formatter->formatSection('Source', sprintf('%s as %s', get_class($source), $source->getName()))); |
|
74 | } |
|
75 | } |
|
76 | ||
77 | protected function displayProcessors(OutputInterface $output) |
|
78 | { |
|
@@ 77-84 (lines=8) @@ | ||
74 | } |
|
75 | } |
|
76 | ||
77 | protected function displayProcessors(OutputInterface $output) |
|
78 | { |
|
79 | $formatter = $this->getHelper('formatter'); |
|
80 | ||
81 | foreach ($this->processorsRegistry as $processor) { |
|
82 | $output->writeln($formatter->formatSection('Processor', get_class($processor))); |
|
83 | } |
|
84 | } |
|
85 | ||
86 | protected function displayRates(OutputInterface $output) |
|
87 | { |