1 | <?php |
||
8 | class TableBuilder |
||
9 | { |
||
10 | /** |
||
11 | * Takes the provided $data and outputs a table on the console output. |
||
12 | * @param array $data Enviroment variable results data. |
||
13 | * @param string $mode Mode the program is being run in. |
||
14 | * @return void |
||
15 | */ |
||
16 | public function outputTable(array $data, $mode) |
||
38 | } |
||
39 |