From 06368584a9277022d9cfc42d22c37f4cc6e580f8 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 8 Jun 2026 02:23:31 +0900 Subject: refactor(external-packages): drop component segment from symfony paths Align the Symfony namespace mapping with the documented convention (symfony::component::X -> symfony::X) and remove now-unused console stub files. Update all import paths across the workspace. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../src/symfony/console/question/question.rs | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'crates/shirabe-external-packages/src/symfony/console/question/question.rs') diff --git a/crates/shirabe-external-packages/src/symfony/console/question/question.rs b/crates/shirabe-external-packages/src/symfony/console/question/question.rs index 02402ce..552f780 100644 --- a/crates/shirabe-external-packages/src/symfony/console/question/question.rs +++ b/crates/shirabe-external-packages/src/symfony/console/question/question.rs @@ -15,11 +15,11 @@ impl Question { todo!() } - pub fn set_normalizer(&mut self, _normalizer: Box PhpMixed>) { + pub fn set_max_attempts(&mut self, _attempts: Option) { todo!() } - pub fn set_max_attempts(&mut self, _attempts: Option) { + pub fn set_normalizer(&mut self, _normalizer: Box PhpMixed>) { todo!() } @@ -27,6 +27,10 @@ impl Question { todo!() } + pub fn set_hidden_fallback(&mut self, _fallback: bool) { + todo!() + } + pub fn get_question(&self) -> String { todo!() } @@ -38,4 +42,12 @@ impl Question { pub fn is_hidden(&self) -> bool { todo!() } + + pub fn get_validator(&self) -> Option<&dyn Fn(Option) -> anyhow::Result> { + todo!() + } + + pub fn get_max_attempts(&self) -> Option { + todo!() + } } -- cgit v1.3.1