aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/question/choice_question.rs
blob: 0544ffdac10268c888a12e76c4b4eaac7674841a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use crate::symfony::component::console::question::question::Question;
use shirabe_php_shim::PhpMixed;

#[derive(Debug)]
pub struct ChoiceQuestion(pub Question);

impl ChoiceQuestion {
    pub fn new(_question: &str, _choices: Vec<PhpMixed>, _default: Option<PhpMixed>) -> Self {
        todo!()
    }

    pub fn set_multiselect(&mut self, _multiselect: bool) {
        todo!()
    }

    pub fn set_error_message(&mut self, _error_message: &str) {
        todo!()
    }
}