aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/helper/question_helper.rs
blob: 705cb9a8b91551fead5e7648639857acd52bd92b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::symfony::component::console::input::input_interface::InputInterface;
use crate::symfony::component::console::output::output_interface::OutputInterface;
use crate::symfony::component::console::question::question::Question;
use shirabe_php_shim::PhpMixed;

#[derive(Debug)]
pub struct QuestionHelper;

impl QuestionHelper {
    pub fn ask(
        &self,
        _input: &mut dyn InputInterface,
        _output: &mut dyn OutputInterface,
        _question: &Question,
    ) -> Option<PhpMixed> {
        todo!()
    }
}