aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/helper/question_helper.rs
blob: 5d452c7f45d8631e011aabb5c841fea8575e82ba (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::InputInterface;
use crate::symfony::component::console::output::OutputInterface;
use crate::symfony::component::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!()
    }
}