From 9d9da0d1512202af7802d13b1c3c33a1a077a84e Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 10 Aug 2026 04:38:35 +0900 Subject: refactor(symfony): hide leaf modules behind their parent re-exports Every parent module in the symfony-* crates already re-exported its leaf modules with `pub use`, so each item was reachable by two paths. Make the leaf modules private and route all callers through the single re-exported path. Co-Authored-By: Claude Opus 5 (1M context) --- .../shirabe-symfony-console/src/descriptor/application_description.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/shirabe-symfony-console/src/descriptor/application_description.rs') diff --git a/crates/shirabe-symfony-console/src/descriptor/application_description.rs b/crates/shirabe-symfony-console/src/descriptor/application_description.rs index d63f0be2..7b9a9e3d 100644 --- a/crates/shirabe-symfony-console/src/descriptor/application_description.rs +++ b/crates/shirabe-symfony-console/src/descriptor/application_description.rs @@ -1,8 +1,8 @@ //! ref: composer/vendor/symfony/console/Descriptor/ApplicationDescription.php use crate::application::Application; -use crate::command::command::Command; -use crate::exception::command_not_found_exception::CommandNotFoundException; +use crate::command::Command; +use crate::exception::CommandNotFoundException; use indexmap::IndexMap; use shirabe_php_shim::PhpMixed; -- cgit v1.3.1-4-g156e