for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OwenIt\Auditing\Redactors;
class LeftRedactor implements \OwenIt\Auditing\Contracts\AttributeRedactor
{
/**
* {@inheritdoc}
*/
public static function redact($value): string
$total = strlen($value);
$tenth = (int) ceil($total / 10);
// Make sure single character strings get redacted
$length = ($total > $tenth) ? ($total - $tenth) : 1;
return str_pad(substr($value, $length), $total, '#', STR_PAD_LEFT);
}