Kirby\Cli\Command\Plugin::confirm PHP Method

confirm() protected method

protected confirm ( $message )
    protected function confirm($message)
    {
        $helper = $this->getHelper('question');
        $question = new ConfirmationQuestion($message . ' [y/n] ', false);
        return $helper->ask($this->input, $this->output, $question);
    }