aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/question/choice_question.rs
blob: 67ffe4c6ef2fcea69dd4306cc080da0764c1f8a3 (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;
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!()
    }
}