Files
faveo/vendor/phpspec/phpspec/features/bootstrap/Fake/Prompter.php
Manish Verma 1ac0f42a58 Laravel 5.6 updates
Travis config update

Removed HHVM script as Laravel no longer support HHVM after releasing 5.3
2018-08-07 10:17:09 +05:30

51 lines
1.1 KiB
PHP

<?php
namespace Fake;
use PhpSpec\Console\Prompter as PrompterInterface;
class Prompter implements PrompterInterface
{
private $answers = array();
private $hasBeenAsked = false;
private $question;
private $unansweredQuestions = false;
public function setAnswer($answer)
{
$this->answers[] = $answer;
}
public function askConfirmation(string $question, bool $default = true) : bool
{
$this->hasBeenAsked = true;
$this->question = $question;
$this->unansweredQuestions = count($this->answers) > 1;
return (bool)array_shift($this->answers);
}
public function hasBeenAsked($question = null)
{
if (!$question) {
return $this->hasBeenAsked;
}
return $this->hasBeenAsked
&& $this->normalise($this->question) == $this->normalise($question);
}
public function hasUnansweredQuestions()
{
return $this->unansweredQuestions;
}
/**
* @return mixed
*/
private function normalise($question)
{
return preg_replace('/\s+/', '', trim(strip_tags($question)));
}
}