From 6ae7e0d4b3eaf20e2d2cd3d000cf61ab0c9b6e83 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 11 Jun 2026 02:39:35 +0900 Subject: feat(console): resolve phase-b TODOs in doRun and IO wiring Wire up ConsoleIO with HelperSet/QuestionHelper, register the ErrorHandler with the IO instance, and fall back to a default output in run(). Replace resolved phase-b TODOs across the console, command, io, factory, installer, dependency_resolver, and util modules; reclassify the remaining blockers (typed Symfony command registry, stdin resource caching) as phase-c. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../src/symfony/console/helper/question_helper.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'crates/shirabe-external-packages/src/symfony/console/helper/question_helper.rs') diff --git a/crates/shirabe-external-packages/src/symfony/console/helper/question_helper.rs b/crates/shirabe-external-packages/src/symfony/console/helper/question_helper.rs index 70a9572..c17cb6b 100644 --- a/crates/shirabe-external-packages/src/symfony/console/helper/question_helper.rs +++ b/crates/shirabe-external-packages/src/symfony/console/helper/question_helper.rs @@ -1,3 +1,4 @@ +use crate::symfony::console::helper::HelperInterface; use crate::symfony::console::input::InputInterface; use crate::symfony::console::output::OutputInterface; use crate::symfony::console::question::Question; @@ -12,7 +13,13 @@ impl QuestionHelper { _input: std::rc::Rc>, _output: std::rc::Rc>, _question: &Question, - ) -> Option { + ) -> PhpMixed { todo!() } } + +impl HelperInterface for QuestionHelper { + fn as_any(&self) -> &dyn std::any::Any { + self + } +} -- cgit v1.3.1