Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
22 | public static function redact($value): string |
||
23 | { |
||
24 | $total = strlen($value); |
||
25 | $tenth = ceil($total / 10); |
||
26 | |||
27 | // Make sure single character strings get redacted |
||
28 | $length = ($total > $tenth) ? ($total - $tenth) : 1; |
||
29 | |||
30 | return str_pad(substr($value, $length), $total, '#', STR_PAD_LEFT); |
||
|
|||
31 | } |
||
33 |