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/component/console/helper/table.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'crates/shirabe-external-packages/src/symfony/component/console/helper/table.rs') diff --git a/crates/shirabe-external-packages/src/symfony/component/console/helper/table.rs b/crates/shirabe-external-packages/src/symfony/component/console/helper/table.rs index c24a19e..ba01e07 100644 --- a/crates/shirabe-external-packages/src/symfony/component/console/helper/table.rs +++ b/crates/shirabe-external-packages/src/symfony/component/console/helper/table.rs @@ -5,19 +5,19 @@ use shirabe_php_shim::PhpMixed; pub struct Table; impl Table { - pub fn new(output: &dyn OutputInterface) -> Self { + pub fn new(_output: &dyn OutputInterface) -> Self { todo!() } - pub fn set_headers(&mut self, headers: Vec) -> &mut Self { + pub fn set_headers(&mut self, _headers: Vec) -> &mut Self { todo!() } - pub fn set_rows(&mut self, rows: Vec) -> &mut Self { + pub fn set_rows(&mut self, _rows: Vec) -> &mut Self { todo!() } - pub fn add_row(&mut self, row: PhpMixed) -> &mut Self { + pub fn add_row(&mut self, _row: PhpMixed) -> &mut Self { todo!() } @@ -25,11 +25,11 @@ impl Table { todo!() } - pub fn set_style(&mut self, style: &str) -> &mut Self { + pub fn set_style(&mut self, _style: &str) -> &mut Self { todo!() } - pub fn set_column_widths(&mut self, widths: Vec) -> &mut Self { + pub fn set_column_widths(&mut self, _widths: Vec) -> &mut Self { todo!() } } -- cgit v1.3.1