Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | final class StyledOutputFactory implements ResultFormatterFactory |
||
16 | { |
||
17 | private ApplicationStatus $applicationStatusFormatter; |
||
18 | private Dependency $dependencyFormatter; |
||
19 | |||
20 | /** |
||
21 | * @param ApplicationStatus $applicationStatusFormatter |
||
22 | * @param Dependency $dependencyFormatter |
||
23 | */ |
||
24 | public function __construct( |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @inheritDoc |
||
34 | */ |
||
35 | public function fromIO(InputInterface $input, OutputInterface $output): StyledOutput |
||
44 |