Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
5822 | public static function spaces_to_tabs(string $str, int $tab_length = 4): string |
||
5823 | { |
||
5824 | 5 | if ($tab_length === 4) { |
|
5825 | 3 | $tab = ' '; |
|
5826 | 2 | } elseif ($tab_length === 2) { |
|
5827 | 1 | $tab = ' '; |
|
5828 | } else { |
||
5829 | 1 | $tab = \str_repeat(' ', $tab_length); |
|
5830 | } |
||
5831 | |||
5832 | 5 | return \str_replace($tab, "\t", $str); |
|
5833 | } |
||
14700 |