blob: 0244c73f46a11435f190329c7884c348a5d9bc96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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!()
}
}
|