aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/console/output
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-17 02:53:53 +0900
committernsfisis <nsfisis@gmail.com>2026-05-17 02:53:53 +0900
commita1c7e6908a26e10f6e1f23a51721664b5e2d838d (patch)
treec575c76f1b43359ed74913da4c6a2636643f1ba0 /crates/shirabe-external-packages/src/symfony/console/output
parent7f606f36fef0c0467c3c0db3d0da33af486dae8a (diff)
downloadphp-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/console/output')
-rw-r--r--crates/shirabe-external-packages/src/symfony/console/output/stream_output.rs42
1 files changed, 31 insertions, 11 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/console/output/stream_output.rs b/crates/shirabe-external-packages/src/symfony/console/output/stream_output.rs
index 8728fa6..e5d83fb 100644
--- a/crates/shirabe-external-packages/src/symfony/console/output/stream_output.rs
+++ b/crates/shirabe-external-packages/src/symfony/console/output/stream_output.rs
@@ -1,5 +1,5 @@
-use shirabe_php_shim::PhpMixed;
use crate::symfony::console::output::output_interface::OutputInterface;
+use shirabe_php_shim::PhpMixed;
#[derive(Debug)]
pub struct StreamOutput;
@@ -11,14 +11,34 @@ impl StreamOutput {
}
impl OutputInterface for StreamOutput {
- 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 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!()
+ }
}