| 1 | <?php |
||
| 8 | class KeepOriginalValuePrinter extends Standard |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Pretty prints an array of nodes (statements) and indents them optionally. |
||
| 12 | * |
||
| 13 | * @param Node[] $nodes Array of nodes |
||
| 14 | * @param bool $indent Whether to indent the printed nodes |
||
| 15 | * |
||
| 16 | * @return string Pretty printed statements |
||
| 17 | */ |
||
| 18 | protected function pStmts(array $nodes, bool $indent = true) : string |
||
| 25 | |||
| 26 | protected function pScalar_String(Node\Scalar\String_ $node) |
||
| 44 | } |
||
| 45 |