use crate::symfony::component::console::output::output_interface::OutputInterface; use shirabe_php_shim::PhpMixed; #[derive(Debug)] pub struct Table; impl Table { pub fn new(output: &dyn OutputInterface) -> Self { todo!() } pub fn set_headers(&mut self, headers: Vec) -> &mut Self { todo!() } pub fn set_rows(&mut self, rows: Vec) -> &mut Self { todo!() } pub fn add_row(&mut self, row: PhpMixed) -> &mut Self { todo!() } pub fn render(&mut self) { todo!() } pub fn set_style(&mut self, style: &str) -> &mut Self { todo!() } pub fn set_column_widths(&mut self, widths: Vec) -> &mut Self { todo!() } }