@@ 135-145 (lines=11) @@ | ||
132 | * @param OutputInterface $output |
|
133 | * @return ConfigurationDebugCommand $this |
|
134 | */ |
|
135 | protected function displaySources(OutputInterface $output) |
|
136 | { |
|
137 | /** |
|
138 | * @var SourceInterface $source |
|
139 | */ |
|
140 | foreach ($this->sourcesRegistry as $source) { |
|
141 | $output->writeln($this->getFormatter()->formatSection('Source', sprintf('%s as %s', get_class($source), $source->getName()))); |
|
142 | } |
|
143 | ||
144 | return $this; |
|
145 | } |
|
146 | ||
147 | /** |
|
148 | * Display processors. |
|
@@ 153-163 (lines=11) @@ | ||
150 | * @param OutputInterface $output |
|
151 | * @return ConfigurationDebugCommand $this |
|
152 | */ |
|
153 | protected function displayProcessors(OutputInterface $output) |
|
154 | { |
|
155 | /** |
|
156 | * @var ProcessorInterface $processor |
|
157 | */ |
|
158 | foreach ($this->processorsRegistry as $processor) { |
|
159 | $output->writeln($this->getFormatter()->formatSection('Processor', get_class($processor))); |
|
160 | } |
|
161 | ||
162 | return $this; |
|
163 | } |
|
164 | ||
165 | /** |
|
166 | * Display repository. |