Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
13 | final class CreateClassDiagram |
||
14 | { |
||
15 | private ImageProcessor $imageProcessor; |
||
16 | |||
17 | private ProgressDisplay $display; |
||
18 | |||
19 | public function __construct(ImageProcessor $imageProcessor, ProgressDisplay $display) |
||
20 | { |
||
21 | $this->imageProcessor = $imageProcessor; |
||
22 | $this->display = $display; |
||
23 | } |
||
24 | |||
25 | public function __invoke(OutputContent $digraph): OutputContent |
||
29 | } |
||
30 | } |
||
31 |