for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Csp\Nonce;
class RandomString implements NonceGenerator
{
public function generate(): string
return str_random(128);
}