Skip to content

Commit

Permalink
Merge branch '5.4' into 6.0
Browse files Browse the repository at this point in the history
* 5.4:
  [Security] Do not overwrite already stored tokens for REMOTE_USER authentication
  [Validator] Fix validation for single level domains
  [Notifier] add Vonage bridge to replace the Nexmo one
  Fix redundant type casts
  Increased the reserved memory from 10k to 32k
  Complete event name & dispatcher in EventDispatcherDebugCommand
  [DoctrineBridge] Add DbalLoggerTest to group legacy
  Leverage DBAL's getNativeConnection() method
  [FrameworkBundle] Fix property-info phpstan extractor discovery
  Fix idempotency of LocoProvider write method
  • Loading branch information
nicolas-grekas committed Nov 29, 2021
2 parents c27250e + ec3661f commit 675a4e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Question/Question.php
Expand Up @@ -121,7 +121,7 @@ public function isHiddenFallback(): bool
*/
public function setHiddenFallback(bool $fallback): static
{
$this->hiddenFallback = (bool) $fallback;
$this->hiddenFallback = $fallback;

return $this;
}
Expand Down

0 comments on commit 675a4e6

Please sign in to comment.