diff options
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/component/console/formatter')
2 files changed, 10 insertions, 10 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/component/console/formatter/output_formatter.rs b/crates/shirabe-external-packages/src/symfony/component/console/formatter/output_formatter.rs index b698d92..d1b9a1e 100644 --- a/crates/shirabe-external-packages/src/symfony/component/console/formatter/output_formatter.rs +++ b/crates/shirabe-external-packages/src/symfony/component/console/formatter/output_formatter.rs @@ -2,11 +2,11 @@ pub struct OutputFormatter; impl OutputFormatter { - pub fn new(decorated: bool) -> Self { + pub fn new(_decorated: bool) -> Self { todo!() } - pub fn format(&self, message: &str) -> String { + pub fn format(&self, _message: &str) -> String { todo!() } @@ -14,22 +14,22 @@ impl OutputFormatter { todo!() } - pub fn set_decorated(&mut self, decorated: bool) { + pub fn set_decorated(&mut self, _decorated: bool) { todo!() } - pub fn escape(text: &str) -> String { + pub fn escape(_text: &str) -> String { todo!() } - pub fn escape_trailing_backslash(text: &str) -> String { + pub fn escape_trailing_backslash(_text: &str) -> String { todo!() } pub fn set_style( &mut self, - name: &str, - style: crate::symfony::component::console::formatter::output_formatter_style::OutputFormatterStyle, + _name: &str, + _style: crate::symfony::component::console::formatter::output_formatter_style::OutputFormatterStyle, ) { todo!() } diff --git a/crates/shirabe-external-packages/src/symfony/component/console/formatter/output_formatter_style.rs b/crates/shirabe-external-packages/src/symfony/component/console/formatter/output_formatter_style.rs index c82cf35..6299157 100644 --- a/crates/shirabe-external-packages/src/symfony/component/console/formatter/output_formatter_style.rs +++ b/crates/shirabe-external-packages/src/symfony/component/console/formatter/output_formatter_style.rs @@ -3,9 +3,9 @@ pub struct OutputFormatterStyle; impl OutputFormatterStyle { pub fn new( - foreground: Option<&str>, - background: Option<&str>, - options: Option<Vec<String>>, + _foreground: Option<&str>, + _background: Option<&str>, + _options: Option<Vec<String>>, ) -> Self { todo!() } |
