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

#[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!()
    }
}