| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function render() |
||
| 42 | { |
||
| 43 | $value = $this->arguments['value']; |
||
| 44 | if (null === $value) { |
||
| 45 | $value = $this->renderChildren(); |
||
| 46 | } |
||
| 47 | // Note: The string syntax use double and single quotes! |
||
| 48 | return str_replace(["\\", "\n", "\r", ",", ";"], ['\\\\', '\n', '\r', '\,', '\;'], $value); |
||
| 49 | } |
||
| 50 | } |
||
| 51 |