PHPSpec2\Console\IO::askConfirmation PHP Method

askConfirmation() public method

public askConfirmation ( $question, $default = true )
    public function askConfirmation($question, $default = true)
    {
        $question = '<question>' . str_repeat(' ', 70) . "\n" . str_pad($question, 70, ' ', STR_PAD_BOTH) . "\n" . str_repeat(' ', 62) . '</question> <value>[y/n]</value> ';
        return $this->helpers->get('dialog')->askConfirmation($this->output, $question, $default);
    }