| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 16 | final class StatisticsProcessor implements Processor |
||
| 17 | { |
||
| 18 | 7 | public function __construct(private readonly TemplateEngine $engine) |
|
| 19 | { |
||
| 20 | } |
||
| 21 | |||
| 22 | 5 | public function name(): string |
|
| 23 | { |
||
| 24 | 5 | return 'Statistics'; |
|
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @throws TemplateFailure |
||
| 29 | */ |
||
| 30 | 4 | public function process(Codebase $codebase): OutputContent |
|
| 35 | } |
||
| 36 | } |
||
| 37 |