| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | trait TEscape |
||
| 12 | { |
||
| 13 | /** @var array<string, string> */ |
||
| 14 | protected static $escapeNlTr = [ |
||
| 15 | '|' => '---!!::SEP::!!---', |
||
| 16 | "\r\n" => '---!!::CRLF::!!---', |
||
| 17 | "\r" => '---!!::CR::!!---', |
||
| 18 | "\n" => '---!!::NL::!!---', |
||
| 19 | ]; |
||
| 20 | |||
| 21 | 9 | protected function escapeNl(string $str): string |
|
| 24 | } |
||
| 25 | |||
| 26 | 9 | protected function restoreNl(string $str): string |
|
| 31 |