1 | <?php |
||
35 | class PrettyPrinter extends Standard |
||
36 | { |
||
37 | /** |
||
38 | * Converts the string into it's original representation without converting |
||
39 | * the special character combinations. |
||
40 | * |
||
41 | * This method is overridden from the original Zend Pretty Printer because |
||
42 | * the original returns the strings as interpreted by PHP-Parser. |
||
43 | * Since we do not want such conversions we take the original that is |
||
44 | * injected by our own custom Lexer. |
||
45 | * |
||
46 | * @param String_ $node The node to return a string representation of. |
||
47 | * |
||
48 | * @see Lexer where the originalValue is injected. |
||
49 | * |
||
50 | * @return string |
||
51 | */ |
||
52 | // @codingStandardsIgnoreStart |
||
53 | 1 | public function pScalar_String(String_ $node): string |
|
62 | } |
||
63 |