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