Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 5 | ||
Bugs | 3 | Features | 0 |
1 | <?php |
||
5145 | 96 | public static function remove_invisible_characters( |
|
5146 | string $str, |
||
5147 | bool $url_encoded = false, |
||
5148 | string $replacement = '', |
||
5149 | bool $keep_basic_control_characters = true |
||
5150 | ): string { |
||
5151 | 96 | return ASCII::remove_invisible_characters( |
|
5152 | 96 | $str, |
|
5153 | $url_encoded, |
||
5154 | $replacement, |
||
5155 | $keep_basic_control_characters |
||
5156 | ); |
||
13694 |