Skip to content

Commit

Permalink
Merge branch '5.3' into 5.4
Browse files Browse the repository at this point in the history
* 5.3:
  [Security] Do not overwrite already stored tokens for REMOTE_USER authentication
  [Validator] Fix validation for single level domains
  Fix redundant type casts
  Increased the reserved memory from 10k to 32k
  [DoctrineBridge] Add DbalLoggerTest to group legacy
  Leverage DBAL's getNativeConnection() method
  Fix idempotency of LocoProvider write method
  • Loading branch information
nicolas-grekas committed Nov 29, 2021
2 parents f797eed + 0af2366 commit ec3661f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Question/Question.php
Expand Up @@ -127,7 +127,7 @@ public function isHiddenFallback()
*/
public function setHiddenFallback(bool $fallback)
{
$this->hiddenFallback = (bool) $fallback;
$this->hiddenFallback = $fallback;

return $this;
}
Expand Down

0 comments on commit ec3661f

Please sign in to comment.