12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace Symfony\Component\Console\Question;
- class ConfirmationQuestion extends Question
- {
- private $trueAnswerRegex;
-
- public function __construct($question, $default = true, $trueAnswerRegex = '/^y/i')
- {
- parent::__construct($question, (bool) $default);
- $this->trueAnswerRegex = $trueAnswerRegex;
- $this->setNormalizer($this->getDefaultNormalizer());
- }
-
- private function getDefaultNormalizer()
- {
- $default = $this->getDefault();
- $regex = $this->trueAnswerRegex;
- return function ($answer) use ($default, $regex) {
- if (is_bool($answer)) {
- return $answer;
- }
- $answerIsTrue = (bool) preg_match($regex, $answer);
- if (false === $default) {
- return $answer && $answerIsTrue;
- }
- return !$answer || $answerIsTrue;
- };
- }
- }
|