Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 3 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
20 | 2 | public function newProcessor(RootConfig $config) |
|
21 | { |
||
22 | 2 | return new Processor( |
|
23 | 2 | $this->logger, |
|
24 | array( |
||
25 | 2 | $this->newProcess($config, 'Conversion'), |
|
26 | 2 | $this->newProcess($config, 'Copyright'), |
|
27 | 2 | $this->newProcess($config, 'Headings'), |
|
28 | 2 | $this->newProcess($config, 'CopyImage'), |
|
29 | 2 | $this->newProcess($config, 'Toc'), |
|
30 | 2 | $this->newProcess($config, 'Rendering'), |
|
31 | ) |
||
32 | 2 | ); |
|
33 | } |
||
34 | |||
54 |