hydra-sql/src/Flag/FlagAccessor.php
Gauthier DUPONT 3f667eede1
Some checks reported warnings
Cadoles/hydra-sql/pipeline/head This commit is unstable
Cadoles/hydra-sql/pipeline/pr-develop This commit is unstable
feat(altcha): add altcha validation layer to login
2025-03-31 14:41:03 +02:00

25 lines
451 B
PHP

<?php
namespace App\Flag;
use Predis\ClientInterface;
class FlagAccessor
{
public function __construct(
private readonly ClientInterface $redis
) {
}
public function isFlagEnabled(FlagEnum $flagName, bool $fallbackValue = false): bool
{
$flagValue = $this->redis->get($flagName->value);
if (null === $flagValue) {
return $fallbackValue;
}
return (bool) $flagValue;
}
}