| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | protected function pScalar_String(Node\Scalar\String_ $node) |
||
| 27 | { |
||
| 28 | // DEBUG |
||
| 29 | //var_dump($node); |
||
| 30 | |||
| 31 | $str = $node->getAttribute('originalValue'); |
||
| 32 | |||
| 33 | // DEBUG |
||
| 34 | //var_dump($str); |
||
| 35 | |||
| 36 | $str = str_replace( |
||
| 37 | ['"_+*-7-to-5-*+_', '_+*-7-to-5-*+_"', '_+*-7-to-5-*+_'], |
||
| 38 | ['"', '"', ''], |
||
| 39 | $str |
||
| 40 | ); |
||
| 41 | |||
| 42 | return $str; |
||
| 43 | } |
||
| 44 | } |
||
| 45 |