Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
10 | public static function redact($value): string |
||
11 | { |
||
12 | $total = strlen($value); |
||
13 | $tenth = (int) ceil($total / 10); |
||
14 | |||
15 | // Make sure single character strings get redacted |
||
16 | $length = ($total > $tenth) ? ($total - $tenth) : 1; |
||
17 | |||
18 | return str_pad(substr($value, $length), $total, '#', STR_PAD_LEFT); |
||
19 | } |
||
21 |