blob: e5d83fb43ec17efe29e441f2a1d9d7e364bdccbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
use crate::symfony::console::output::output_interface::OutputInterface;
use shirabe_php_shim::PhpMixed;
#[derive(Debug)]
pub struct StreamOutput;
impl StreamOutput {
pub fn new(stream: PhpMixed, verbosity: i64, decorated: Option<bool>) -> Self {
todo!()
}
}
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!()
}
}
|