We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
9 | final class ConfigProcessor implements ConfigProcessorInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var ConfigProcessorInterface[] |
||
13 | */ |
||
14 | private $processors; |
||
15 | |||
16 | 95 | public function __construct(iterable $processors) |
|
17 | { |
||
18 | 95 | foreach ($processors as $processor) { |
|
19 | 95 | $this->register($processor); |
|
20 | } |
||
21 | 95 | } |
|
22 | |||
23 | 94 | public function getProcessors() |
|
24 | { |
||
25 | 94 | return $this->processors; |
|
26 | } |
||
27 | |||
28 | 95 | public function register(ConfigProcessorInterface $configProcessor): void |
|
32 | |||
33 | 94 | public function process(LazyConfig $lazyConfig): LazyConfig |
|
34 | { |
||
41 | } |
||
42 |