for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace PersonalGalaxy\Identity\Entity\Identity;
final class SecretKey
{
private $value;
public function __construct()
$this->value = random_bytes(20);
}
public function __toString(): string
return $this->value;