| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 87 | public function __construct(\Closure $parser) |
|
| 31 | { |
||
| 32 | 87 | parent::__construct(); |
|
| 33 | 87 | $this->appendChild($this->head = new TableSection(TableSection::TYPE_HEAD)); |
|
| 34 | 87 | $this->appendChild($this->body = new TableSection(TableSection::TYPE_BODY)); |
|
| 35 | 87 | $this->parser = $parser; |
|
| 36 | 87 | } |
|
| 37 | |||
| 67 |