Total Complexity | 8 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class Table extends Field |
||
11 | { |
||
12 | /** |
||
13 | * @var string a class to apply to the <table> tag |
||
14 | */ |
||
15 | protected $cssClass; |
||
16 | |||
17 | /** |
||
18 | * @var array|int the column numbers to convert to headers |
||
19 | */ |
||
20 | protected $headerColumns; |
||
21 | |||
22 | public function __toString() |
||
23 | { |
||
24 | return $this->toHtml($this->content); |
||
25 | } |
||
26 | |||
27 | protected function toHtml($table) { |
||
51 | } |
||
52 | } |