aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/helper/table.rs
blob: ca8b29223c1bba9bc524ed29d18c72a69ce51a25 (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
36
37
38
39
40
41
42
43
44
45
46
47
use crate::symfony::component::console::output::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<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_width(&mut self, _column_index: usize, _width: i64) -> &mut Self {
        todo!()
    }

    pub fn set_column_widths(&mut self, _widths: Vec<i64>) -> &mut Self {
        todo!()
    }

    pub fn set_column_max_width(&mut self, _column_index: usize, _width: i64) -> &mut Self {
        todo!()
    }

    pub fn set_horizontal(&mut self, _horizontal: bool) -> &mut Self {
        todo!()
    }
}