diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-17 02:53:53 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-17 02:53:53 +0900 |
| commit | a1c7e6908a26e10f6e1f23a51721664b5e2d838d (patch) | |
| tree | c575c76f1b43359ed74913da4c6a2636643f1ba0 /crates/shirabe-external-packages/src/symfony/component/console/output | |
| parent | 7f606f36fef0c0467c3c0db3d0da33af486dae8a (diff) | |
| download | php-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.tar.gz php-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.tar.zst php-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.zip | |
chore(style): cargo fmt
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/component/console/output')
| -rw-r--r-- | crates/shirabe-external-packages/src/symfony/component/console/output/console_output.rs | 56 |
1 files changed, 42 insertions, 14 deletions
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 index 98133df..150c8ae 100644 --- 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 @@ -1,12 +1,16 @@ use crate::symfony::component::console::formatter::output_formatter::OutputFormatter; -use crate::symfony::component::console::output::output_interface::OutputInterface; use crate::symfony::component::console::output::console_output_interface::ConsoleOutputInterface; +use crate::symfony::component::console::output::output_interface::OutputInterface; #[derive(Debug)] pub struct ConsoleOutput; impl ConsoleOutput { - pub fn new(verbosity: i64, decorated: Option<bool>, formatter: Option<OutputFormatter>) -> Self { + pub fn new( + verbosity: i64, + decorated: Option<bool>, + formatter: Option<OutputFormatter>, + ) -> Self { todo!() } @@ -16,16 +20,40 @@ impl ConsoleOutput { } impl OutputInterface for ConsoleOutput { - fn write(&mut self, _messages: &str, _newline: bool, _type: i64) { todo!() } - fn writeln(&mut self, _messages: &str, _type: i64) { todo!() } - fn set_verbosity(&mut 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(&mut self, _decorated: bool) { todo!() } - fn is_decorated(&self) -> bool { todo!() } - fn set_formatter(&mut self, _formatter: OutputFormatter) { todo!() } - fn get_formatter(&self) -> &OutputFormatter { todo!() } + fn write(&mut self, _messages: &str, _newline: bool, _type: i64) { + todo!() + } + fn writeln(&mut self, _messages: &str, _type: i64) { + todo!() + } + fn set_verbosity(&mut 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(&mut self, _decorated: bool) { + todo!() + } + fn is_decorated(&self) -> bool { + todo!() + } + fn set_formatter(&mut self, _formatter: OutputFormatter) { + todo!() + } + fn get_formatter(&self) -> &OutputFormatter { + todo!() + } } |
