Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class StandardPrinter implements Printer |
||
10 | { |
||
11 | private PrettyPrinterAbstract $decoratedPrinter; |
||
12 | |||
13 | public function __construct( |
||
14 | PrettyPrinterAbstract $decoratedPrinter |
||
15 | ) { |
||
16 | |||
17 | $this->decoratedPrinter = $decoratedPrinter; |
||
18 | } |
||
19 | |||
20 | public function print(array $statements): string |
||
23 | } |
||
24 | } |
||
25 |