aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/helper/question_helper.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/component/console/helper/question_helper.rs')
-rw-r--r--crates/shirabe-external-packages/src/symfony/component/console/helper/question_helper.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/component/console/helper/question_helper.rs b/crates/shirabe-external-packages/src/symfony/component/console/helper/question_helper.rs
deleted file mode 100644
index 5d452c7..0000000
--- a/crates/shirabe-external-packages/src/symfony/component/console/helper/question_helper.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-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!()
- }
-}