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) --- .../console/single_command_application.rs | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 crates/shirabe-external-packages/src/symfony/component/console/single_command_application.rs (limited to 'crates/shirabe-external-packages/src/symfony/component/console/single_command_application.rs') diff --git a/crates/shirabe-external-packages/src/symfony/component/console/single_command_application.rs b/crates/shirabe-external-packages/src/symfony/component/console/single_command_application.rs deleted file mode 100644 index 9273477..0000000 --- a/crates/shirabe-external-packages/src/symfony/component/console/single_command_application.rs +++ /dev/null @@ -1,33 +0,0 @@ -#[derive(Debug)] -pub struct SingleCommandApplication; - -impl Default for SingleCommandApplication { - fn default() -> Self { - Self::new() - } -} - -impl SingleCommandApplication { - pub fn new() -> Self { - todo!() - } - - pub fn set_name(&mut self, _name: &str) -> &mut Self { - todo!() - } - - pub fn set_version(&mut self, _version: &str) -> &mut Self { - todo!() - } - - pub fn set_code( - &mut self, - _code: Box i64>, - ) -> &mut Self { - todo!() - } - - pub fn run(&mut self) -> anyhow::Result { - todo!() - } -} -- cgit v1.3.1