diff options
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/component/console/helper/table.rs')
| -rw-r--r-- | crates/shirabe-external-packages/src/symfony/component/console/helper/table.rs | 35 |
1 files changed, 35 insertions, 0 deletions
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 new file mode 100644 index 0000000..0244c73 --- /dev/null +++ b/crates/shirabe-external-packages/src/symfony/component/console/helper/table.rs @@ -0,0 +1,35 @@ +use shirabe_php_shim::PhpMixed; +use crate::symfony::component::console::output::output_interface::OutputInterface; + +#[derive(Debug)] +pub struct Table; + +impl Table { + pub fn new(output: &dyn OutputInterface) -> Self { + todo!() + } + + pub fn set_headers(&mut self, headers: Vec<PhpMixed>) -> &mut Self { + todo!() + } + + pub fn set_rows(&mut self, rows: Vec<PhpMixed>) -> &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<i64>) -> &mut Self { + todo!() + } +} |
