| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | 38 | public function transform( string $segment ): string { |
|
| 11 | |||
| 12 | //Replace br placeholders |
||
| 13 | 38 | $segment = str_replace( ConstantEnum::crlfPlaceholder, "\r\n", $segment ); |
|
| 14 | 38 | $segment = str_replace( ConstantEnum::lfPlaceholder, "\n", $segment ); |
|
| 15 | 38 | $segment = str_replace( ConstantEnum::crPlaceholder, "\r", $segment ); |
|
| 16 | |||
| 17 | 38 | return str_replace( ConstantEnum::tabPlaceholder, "\t", $segment ); |
|
| 18 | |||
| 21 | } |