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

#[derive(Debug)]
pub struct QuestionHelper;

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