for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Damax\Bundle\ApiAuthBundle\Key\Generator;
final class FixedGenerator implements Generator
{
private $key;
public function __construct(string $key)
$this->key = $key;
}
public function generateKey(): string
return $this->key;