Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
34 | 7 | public function __construct(Cells $cells, Actions $actions = null, array $attributes = [], string $tag = self::TAG) |
|
35 | { |
||
36 | 7 | $this->cells = $cells; |
|
37 | 7 | $this->actions = $actions; |
|
38 | |||
39 | 7 | parent::__construct('', $tag, $attributes); |
|
40 | |||
41 | 7 | $this->appendToAttribute(Component::ATTRIBUTE_CLASS, $tag); |
|
42 | 7 | } |
|
43 | |||
106 |