| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function table(array $attributes = [], $drawFooter = false, $drawSearch = false) |
||
| 22 | { |
||
| 23 | $this->tableAttributes = array_merge($this->getTableAttributes(), $attributes); |
||
| 24 | $htmlAttr = $this->html->attributes($this->tableAttributes); |
||
| 25 | $tableHtml = '<table '.$htmlAttr.'></table>'; |
||
| 26 | |||
| 27 | return new HtmlString($tableHtml); |
||
| 28 | } |
||
| 29 | } |
||
| 30 |