Conditions | 2 |
Paths | 2 |
Total Lines | 17 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
7757 | 1 | public static function str_split_array( |
|
7758 | array $input, |
||
7759 | int $length = 1, |
||
7760 | bool $clean_utf8 = false, |
||
7761 | bool $try_to_use_mb_functions = true |
||
7762 | ): array { |
||
7763 | 1 | foreach ($input as &$v) { |
|
7764 | 1 | $v = self::str_split( |
|
7765 | $v, |
||
7766 | $length, |
||
7767 | $clean_utf8, |
||
7768 | $try_to_use_mb_functions |
||
7769 | ); |
||
7770 | } |
||
7771 | |||
7772 | /** @var string[][] $input */ |
||
7773 | 1 | return $input; |
|
7774 | } |
||
13722 |