blob: e134de254f09cd1b31823559b2eb685f18092e38 (
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!()
}
}
|