for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Utils;
class UtilsService
{
public static function hashSuffix($seed)
return '['.substr(hash('md5', $seed), 0, 5).']';
}