You are here

public function Question::setHiddenFallback in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Question/Question.php \Symfony\Component\Console\Question\Question::setHiddenFallback()

Sets whether to fallback on non-hidden question if the response can not be hidden.

Parameters

bool $fallback:

Return value

Question The current instance

File

vendor/symfony/console/Question/Question.php, line 109

Class

Question
Represents a Question.

Namespace

Symfony\Component\Console\Question

Code

public function setHiddenFallback($fallback) {
  $this->hiddenFallback = (bool) $fallback;
  return $this;
}