blob: c17cb6b50024601247d4093ad7adc65d89d959db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
use crate::symfony::console::helper::HelperInterface;
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,
) -> PhpMixed {
todo!()
}
}
impl HelperInterface for QuestionHelper {
fn as_any(&self) -> &dyn std::any::Any {
self
}
}
|