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) --- .../component/console/output/console_output.rs | 73 ---------------------- 1 file changed, 73 deletions(-) delete mode 100644 crates/shirabe-external-packages/src/symfony/component/console/output/console_output.rs (limited to 'crates/shirabe-external-packages/src/symfony/component/console/output/console_output.rs') diff --git a/crates/shirabe-external-packages/src/symfony/component/console/output/console_output.rs b/crates/shirabe-external-packages/src/symfony/component/console/output/console_output.rs deleted file mode 100644 index 00b9324..0000000 --- a/crates/shirabe-external-packages/src/symfony/component/console/output/console_output.rs +++ /dev/null @@ -1,73 +0,0 @@ -use crate::symfony::component::console::formatter::OutputFormatter; -use crate::symfony::component::console::output::ConsoleOutputInterface; -use crate::symfony::component::console::output::OutputInterface; - -#[derive(Debug)] -pub struct ConsoleOutput; - -impl ConsoleOutput { - pub fn new( - _verbosity: i64, - _decorated: Option, - _formatter: Option, - ) -> Self { - todo!() - } -} - -impl ConsoleOutputInterface for ConsoleOutput { - fn get_error_output(&self) -> std::rc::Rc> { - todo!() - } - - fn set_error_output(&mut self, _error: std::rc::Rc>) { - todo!() - } -} - -impl OutputInterface for ConsoleOutput { - fn is_console_output_interface(&self) -> bool { - true - } - - fn as_console_output_interface(&self) -> Option<&dyn ConsoleOutputInterface> { - Some(self) - } - - fn write(&self, _messages: &str, _newline: bool, _type: i64) { - todo!() - } - fn writeln(&self, _messages: &str, _type: i64) { - todo!() - } - fn set_verbosity(&self, _level: i64) { - todo!() - } - fn get_verbosity(&self) -> i64 { - todo!() - } - fn is_quiet(&self) -> bool { - todo!() - } - fn is_verbose(&self) -> bool { - todo!() - } - fn is_very_verbose(&self) -> bool { - todo!() - } - fn is_debug(&self) -> bool { - todo!() - } - fn set_decorated(&self, _decorated: bool) { - todo!() - } - fn is_decorated(&self) -> bool { - todo!() - } - fn set_formatter(&self, _formatter: OutputFormatter) { - todo!() - } - fn get_formatter(&self) -> &OutputFormatter { - todo!() - } -} -- cgit v1.3.1