| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | final class StandardPrinter implements Printer |
||
| 20 | { |
||
| 21 | private PrettyPrinterAbstract $decoratedPrinter; |
||
| 22 | |||
| 23 | public function __construct( |
||
| 24 | PrettyPrinterAbstract $decoratedPrinter |
||
| 25 | ) { |
||
| 26 | $this->decoratedPrinter = $decoratedPrinter; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function print(array $newStmts, array $oldStmts, array $oldTokens): string |
||
| 32 | } |
||
| 33 | } |
||
| 34 |