Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class ASTPrettyPrinter extends Standard |
||
18 | { |
||
19 | protected function pExpr_Array(Array_ $node) |
||
20 | { |
||
21 | return '[' . $this->pCommaSeparatedMultiline($node->items, true) . $this->nl . ']'; |
||
22 | } |
||
23 | |||
24 | protected function pStmt_ClassConst(ClassConst $node): string |
||
25 | { |
||
26 | return parent::pStmt_ClassConst($node) . "\n"; |
||
27 | } |
||
28 | |||
29 | protected function pStmt_Property(Property $node): string |
||
30 | { |
||
31 | return parent::pStmt_Property($node) . "\n"; |
||
32 | } |
||
33 | |||
34 | protected function pStmt_ClassMethod(ClassMethod $node): string |
||
35 | { |
||
36 | return parent::pStmt_ClassMethod($node) . "\n"; |
||
37 | } |
||
39 |