Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 5 | ||
Bugs | 3 | Features | 0 |
1 | <?php |
||
5191 | 96 | public static function remove_invisible_characters( |
|
5192 | string $str, |
||
5193 | bool $url_encoded = false, |
||
5194 | string $replacement = '', |
||
5195 | bool $keep_basic_control_characters = true |
||
5196 | ): string { |
||
5197 | 96 | return ASCII::remove_invisible_characters( |
|
5198 | $str, |
||
5199 | $url_encoded, |
||
5200 | $replacement, |
||
5201 | $keep_basic_control_characters |
||
5202 | ); |
||
13722 |