From 748e741f740ac46ec40e42679aba3b07927709c0 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 15:08:03 +0900 Subject: chore: cargo clippy --fix --- .../src/symfony/console/style/symfony_style.rs | 50 +++++++++++----------- 1 file changed, 25 insertions(+), 25 deletions(-) (limited to 'crates/shirabe-external-packages/src/symfony/console/style') diff --git a/crates/shirabe-external-packages/src/symfony/console/style/symfony_style.rs b/crates/shirabe-external-packages/src/symfony/console/style/symfony_style.rs index 7f7acd6..4269337 100644 --- a/crates/shirabe-external-packages/src/symfony/console/style/symfony_style.rs +++ b/crates/shirabe-external-packages/src/symfony/console/style/symfony_style.rs @@ -6,89 +6,89 @@ use shirabe_php_shim::PhpMixed; pub struct SymfonyStyle; impl SymfonyStyle { - pub fn new(input: &dyn InputInterface, output: &dyn OutputInterface) -> Self { + pub fn new(_input: &dyn InputInterface, _output: &dyn OutputInterface) -> Self { todo!() } - pub fn title(&mut self, message: &str) { + pub fn title(&mut self, _message: &str) { todo!() } - pub fn section(&mut self, message: &str) { + pub fn section(&mut self, _message: &str) { todo!() } - pub fn text(&mut self, message: &str) { + pub fn text(&mut self, _message: &str) { todo!() } - pub fn comment(&mut self, message: &str) { + pub fn comment(&mut self, _message: &str) { todo!() } - pub fn success(&mut self, message: PhpMixed) { + pub fn success(&mut self, _message: PhpMixed) { todo!() } - pub fn error(&mut self, message: PhpMixed) { + pub fn error(&mut self, _message: PhpMixed) { todo!() } - pub fn warning(&mut self, message: PhpMixed) { + pub fn warning(&mut self, _message: PhpMixed) { todo!() } - pub fn note(&mut self, message: PhpMixed) { + pub fn note(&mut self, _message: PhpMixed) { todo!() } - pub fn listing(&mut self, elements: &[String]) { + pub fn listing(&mut self, _elements: &[String]) { todo!() } - pub fn new_line(&mut self, count: i64) { + pub fn new_line(&mut self, _count: i64) { todo!() } pub fn ask( &mut self, - question: &str, - default: Option<&str>, - validator: Option) -> anyhow::Result>>, + _question: &str, + _default: Option<&str>, + _validator: Option) -> anyhow::Result>>, ) -> PhpMixed { todo!() } pub fn ask_hidden( &mut self, - question: &str, - validator: Option) -> anyhow::Result>>, + _question: &str, + _validator: Option) -> anyhow::Result>>, ) -> PhpMixed { todo!() } - pub fn confirm(&mut self, question: &str, default: bool) -> bool { + pub fn confirm(&mut self, _question: &str, _default: bool) -> bool { todo!() } pub fn choice( &mut self, - question: &str, - choices: Vec, - default: Option, + _question: &str, + _choices: Vec, + _default: Option, ) -> PhpMixed { todo!() } - pub fn table(&mut self, headers: Vec, rows: Vec) { + pub fn table(&mut self, _headers: Vec, _rows: Vec) { todo!() } - pub fn progress_start(&mut self, max: i64) { + pub fn progress_start(&mut self, _max: i64) { todo!() } - pub fn progress_advance(&mut self, step: i64) { + pub fn progress_advance(&mut self, _step: i64) { todo!() } @@ -100,11 +100,11 @@ impl SymfonyStyle { todo!() } - pub fn writeln(&mut self, messages: PhpMixed, r#type: i64) { + pub fn writeln(&mut self, _messages: PhpMixed, _type: i64) { todo!() } - pub fn write(&mut self, messages: PhpMixed, newline: bool, r#type: i64) { + pub fn write(&mut self, _messages: PhpMixed, _newline: bool, _type: i64) { todo!() } } -- cgit v1.3.1