Compare commits

..

1 Commits

Author SHA1 Message Date
c37eb95ef4 feat(altcha): add altcha validation layer to login
Some checks reported warnings
Cadoles/hydra-sql/pipeline/pr-develop This commit was not built
2025-04-10 13:42:48 +02:00

View File

@ -15,7 +15,7 @@ class FlagAccessor
public function isFlagEnabled(FlagEnum $flagName, bool $fallbackValue = false): bool
{
$flagValue = $this->cache->getItem($flagName->value)->get();
$flagValue = $this->cache->getItem($flagName->value);
if (null === $flagValue) {
return $fallbackValue;