aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/console/output
diff options
context:
space:
mode:
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!()
+ }
}