| 1 | <?php |
||
| 27 | trait CsvControlTrait |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * Filter Csv control character |
||
| 31 | * |
||
| 32 | * @param string $char Csv control character |
||
| 33 | * @param string $type Csv control character type |
||
| 34 | * @param string $caller public API method calling the method |
||
| 35 | * |
||
| 36 | * @throws LengthException If the Csv control character is not one character only. |
||
| 37 | * |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | 12 | protected function filterControl(string $char, string $type, string $caller): string |
|
| 48 | } |
||
| 49 |